Adwaita: stop using assets for treeview check/radio...
authorLapo Calamandrei <calamandrei@gmail.com>
Tue, 16 Feb 2016 01:11:12 +0000 (02:11 +0100)
committerLapo Calamandrei <calamandrei@gmail.com>
Tue, 16 Feb 2016 01:14:02 +0000 (02:14 +0100)
...the sizing is still off, waiting for Benjamin to add the magic,
probably the icon shadow is missing, not sure since it's blurry.
This needs to be reverted in case the sizing won't get fixed.

gtk/theme/Adwaita/_common.scss
gtk/theme/Adwaita/assets.svg
gtk/theme/Adwaita/gtk-contained-dark.css
gtk/theme/Adwaita/gtk-contained.css

index 781f2c5a1e297472e254e71b331f44b4e4af56ff..e14dcc35f40a089cfac58c1d86b36e621638c67f 100644 (file)
@@ -1459,10 +1459,12 @@ treeview.view {
 
   &:disabled {
     color: $insensitive_fg_color;
+
     &:selected {
       color: mix($selected_fg_color, $selected_bg_color, 40%);
       &:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, 30%); }
     }
+
     &:backdrop { color: $backdrop_insensitive_color; }
   }
 
@@ -1486,14 +1488,18 @@ treeview.view {
 
   &.expander {
     -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
+
     &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); }
 
     color: mix($fg_color, $base_color, 70%);
 
     &:hover { color: $fg_color; }
+
     &:selected {
       color: mix($selected_fg_color, $selected_bg_color, 70%);
+
       &:hover { color: $selected_fg_color; }
+
       &:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, 70%); }
     }
 
@@ -2278,52 +2284,6 @@ switch {
 // draw regular check and radio items using our PNG assets
 // all assets are rendered from assets.svg. never add pngs directly
 
-@each $w,$a in ('check', 'checkbox'),
-               ('radio','radio') {
-
-  //standard checks and radios
-  @each $s,$as in ('','-unchecked'),
-                  (':hover', '-unchecked-hover'),
-                  (':active', '-unchecked-active'),
-                  (':disabled','-unchecked-insensitive'),
-                  (':backdrop', '-unchecked-backdrop'),
-                  (':backdrop:disabled', '-unchecked-backdrop-insensitive'),
-                  (':indeterminate', '-mixed'),
-                  (':indeterminate:hover', '-mixed-hover'),
-                  (':indeterminate:selected', '-mixed-active'),
-                  (':indeterminate:backdrop', '-mixed-backdrop'),
-                  (':indeterminate:disabled', '-mixed-insensitive'),
-                  (':indeterminate:disabled:backdrop', '-mixed-backdrop-insensitive'),
-                  (':checked', '-checked'),
-                  (':checked:disabled','-checked-insensitive'),
-                  (':checked:hover', '-checked-hover'),
-                  (':checked:active', '-checked-active'),
-                  (':backdrop:checked', '-checked-backdrop'),
-                  (':backdrop:checked:disabled', '-checked-backdrop-insensitive') {
-    treeview.#{$w}#{$s} {
-      -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"),
-                                    url("assets/#{$a}#{$as}#{$asset_suffix}@2.png"));
-      -gtk-icon-shadow: if(str-index($s,"backdrop"), none, 0 1px 0 $borders_edge); //no edge highlight for :backdrop
-      & button.flat { -gtk-icon-shadow: none; }
-    }
-    @if $variant == 'light' {
-      // the borders of the light variant versions of checks and radios are
-      // too similar in luminosity to the selected background color, hence
-      // we need special casing.
-      .view treeview.#{$w}#{$s}:selected {
-        -gtk-icon-source: -gtk-scaled(url("assets/selected-#{$a}#{$as}#{$asset_suffix}.png"),
-                                      url("assets/selected-#{$a}#{$as}#{$asset_suffix}@2.png"));
-      }
-    }
-  }
-}
-
-//treeview and rows
-.view.check, .view.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none;
-  &:selected, &:hover { -gtk-icon-shadow: none; }
-}
 
 //selection-mode
 @each $s,$as in ('','-selectionmode'),
@@ -2346,6 +2306,7 @@ checkbutton.text-button, radiobutton.text-button {
   // this is for a nice focus on check and radios text
   padding: 1px 2px 4px;
   outline-offset: 0;
+
   &:disabled,
   &:disabled:active,
   &:disabled:indeterminate {
@@ -2358,6 +2319,7 @@ checkbutton.text-button, radiobutton.text-button {
 check,
 radio {
   margin: 0 4px;
+
   &:only-child { margin: 0; }
 
   min-height: 14px;
@@ -2365,11 +2327,13 @@ radio {
   border: 1px solid;
   -gtk-icon-source: none;
   @include button(normal);
+
   &:hover { @include button(hover); }
   &:active { @include button(active); }
   &:disabled { @include button(insensitive); }
   &:backdrop {
     @include button(backdrop);
+
     &:disabled { @include button(backdrop-insensitive); }
   }
 
@@ -2394,6 +2358,7 @@ radio {
   }
 }
 
+%check,
 check {
   border-radius: 3px;
   &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")),
@@ -2402,6 +2367,7 @@ check {
                                             -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 }
 
+%radio,
 radio {
   border-radius: 100%;
   &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")),
@@ -2441,6 +2407,43 @@ menu menuitem {
 }
 
 
+// treeview stuff, let's the fun begin:
+treeview.view check:selected {
+  &:focus, &:backdrop, & {
+    &:disabled, & {
+      @extend %check;
+      @if $variant == 'light' { border-color: $selected_borders_color; }
+    }
+  }
+}
+
+treeview.view radio:selected {
+  &:focus, &:backdrop, & {
+    &:disabled, & {
+      @extend %radio;
+      @if $variant == 'light' { border-color: $selected_borders_color; }
+    }
+  }
+}
+
+treeview.view check,
+treeview.view radio {
+  &:dir(rtl), &:dir(ltr) {  // specificity bump
+    &:selected, & {
+      &:focus, &:hover, & { color: $fg_color; }
+
+      &:backdrop {
+        &:hover, & { color: $backdrop_fg_color; }
+
+        &:disabled { color: $backdrop_insensitive_color; }
+      }
+
+      &:disabled { color: $insensitive_fg_color;}
+    }
+  }
+}
+
+
 /************
  * GtkScale *
  ************/
index 63d920eb53ef58eb75f3bc23998996dffeb1841a..6bfabc70491cab47434279fe6cf59a1f2d75937a 100644 (file)
          offset="1"
          style="stop-color:#d3d3d3;stop-opacity:1;" />
     </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-0-3">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-7-1" />
-      <stop
-         id="stop9528-3-09-6-5-3"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-2-8" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2" />
-      <stop
-         id="stop9857-44-0-4-3"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-38">
-      <stop
-         id="stop5583-0-92-8-0-7-6-2"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-14" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-05"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-3-9-4">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-2-5-9" />
-      <stop
-         id="stop9528-3-09-6-4-4-9"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-5-0-9" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7-4-3">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-6-3" />
-      <stop
-         id="stop9857-44-0-4-3-2-9"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-43-9" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1"
-         offset="0"
-         style="stop-color:#454c4c;stop-opacity:1;" />
-      <stop
-         style="stop-color:#393f3f;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-0">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-2"
-         offset="0"
-         style="stop-color:#5b6464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#434a4a;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-5" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-7"
-         offset="1"
-         style="stop-color:#393f3f;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-23">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-35"
-         offset="0"
-         style="stop-color:#212424;stop-opacity:1" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-72"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-50">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-0"
-         offset="0"
-         style="stop-color:#454c4c;stop-opacity:1;" />
-      <stop
-         style="stop-color:#393f3f;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-55" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-0"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-0-2">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-2-9"
-         offset="0"
-         style="stop-color:#5b6464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#434a4a;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-5-3" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-7-8"
-         offset="1"
-         style="stop-color:#393f3f;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-23-74">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-35-8"
-         offset="0"
-         style="stop-color:#212424;stop-opacity:1" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-72-27"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
     <linearGradient
        id="linearGradient5581-5-2-4-6-8-7-38-7">
       <stop
        y1="-16.46591"
        x2="94.883377"
        y2="2.869415" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-23-74"
-       id="linearGradient7099"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2"
-       id="linearGradient7101"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-50"
-       id="linearGradient7103"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-23"
-       id="linearGradient7105"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7107"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient7109"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient9524-6-0-1-0-3-2"
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-4-3"
-       id="linearGradient4834"
+       xlink:href="#pushed-27-4-47-7-1"
+       id="linearGradient10491"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
+       gradientTransform="matrix(1.3656216,0,0,0.46323921,-51.116279,-156.72118)"
        x1="60.805183"
        y1="446.62411"
        x2="60.805183"
        y2="404.45575" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-3-9-4"
-       id="linearGradient4836"
+       xlink:href="#linearGradient5581-5-2-4-6-8-7"
+       id="linearGradient10493"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
+       gradientTransform="matrix(1.0882418,0,0,0.36290768,-35.769827,-13.055003)"
        x1="63.568954"
-       y1="124.97202"
+       y1="127.16142"
        x2="63.568954"
-       y2="154.85121" />
+       y2="152.6618" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7"
-       id="linearGradient4838"
+       xlink:href="#linearGradient5581-5-2-4-6-8-7-38-7-2"
+       id="linearGradient10615"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
+       gradientTransform="matrix(-3.0317572,0,0,-1.0076035,492.69371,-5.491158)"
+       x1="94.883377"
+       y1="-16.46591"
+       x2="94.883377"
+       y2="2.869415" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient4840"
+       xlink:href="#linearGradient9524-6-0-1-0-3-2-90-4"
+       id="linearGradient10617"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
+       gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.275635)"
+       x1="95.453751"
+       y1="-12.24312"
+       x2="95.453751"
+       y2="6.2584834" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7"
-       id="linearGradient4842"
+       xlink:href="#linearGradient9524-6-0-1-0-3-2"
+       id="linearGradient10619"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
+       gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.2756348)"
+       x1="95.453751"
+       y1="-12.24312"
+       x2="95.453751"
+       y2="6.2584834" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-38"
-       id="linearGradient4844"
+       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-1"
+       id="linearGradient10867"
        gradientUnits="userSpaceOnUse"
        gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.05545"
-       x2="63.568954"
-       y2="152.76778" />
+       x1="99.528183"
+       y1="9.5786257"
+       x2="99.528183"
+       y2="-8.0055418" />
     <linearGradient
        inkscape:collect="always"
-       id="pushed-27-4-47-7-4-3-1">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-6-3-4" />
-      <stop
-         id="stop9857-44-0-4-3-2-9-2"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-43-9-5" />
-    </linearGradient>
+       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-34"
+       id="linearGradient11025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+       x1="98.344261"
+       y1="10.781056"
+       x2="98.344261"
+       y2="-9.2648945" />
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient9524-6-0-1-3-9-4-6">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-2-5-9-3" />
-      <stop
-         id="stop9528-3-09-6-4-4-9-5"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-5-0-9-6" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7-7">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-0" />
-      <stop
-         id="stop9857-44-0-4-3-5"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-9" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-0-3-8">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-7-1-8" />
-      <stop
-         id="stop9528-3-09-6-5-3-2"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-2-8-2" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-0">
-      <stop
-         id="stop5583-0-92-8-0-7-6-4"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-69" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-9"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-38-6">
-      <stop
-         id="stop5583-0-92-8-0-7-6-2-0"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-14-6" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-05-4"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-4-3-1"
-       id="linearGradient10479"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-3-9-4-6"
-       id="linearGradient10481"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-7"
-       id="linearGradient10483"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3-8"
-       id="linearGradient10485"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-0"
-       id="linearGradient10487"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-38-6"
-       id="linearGradient10489"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.05545"
-       x2="63.568954"
-       y2="152.76778" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-1"
-       id="linearGradient10491"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.3656216,0,0,0.46323921,-51.116279,-156.72118)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7"
-       id="linearGradient10493"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0882418,0,0,0.36290768,-35.769827,-13.055003)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient7117-1-9"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-287.29777,12.621634)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient7117-1-2-4-7"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-377.29832,12.622171)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-38-7-2"
-       id="linearGradient10615"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-3.0317572,0,0,-1.0076035,492.69371,-5.491158)"
-       x1="94.883377"
-       y1="-16.46591"
-       x2="94.883377"
-       y2="2.869415" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3-2-90-4"
-       id="linearGradient10617"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.275635)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3-2"
-       id="linearGradient10619"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-3.025641,0,0,-1,492.3252,-1.2756348)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient4838-7-9-1"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153846)"
-       x1="95.213127"
-       y1="167.30688"
-       x2="95.213127"
-       y2="186.8056" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient10840-1"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,17.336617,179.17846)"
-       x1="98.595253"
-       y1="-9.236434"
-       x2="98.595253"
-       y2="9.2269421" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-1"
-       id="linearGradient10867"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="99.528183"
-       y1="9.5786257"
-       x2="99.528183"
-       y2="-8.0055418" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient10867-5"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-3.0317573,0,0,-1.0053174,642.69371,179.54591)"
-       x1="99.528183"
-       y1="9.5786257"
-       x2="99.528183"
-       y2="-8.0055418" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7101-3-6-7"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,29.178471)"
-       x1="94.996544"
-       y1="167.37457"
-       x2="94.996544"
-       y2="185.89658" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-34"
-       id="linearGradient11025"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="98.344261"
-       y1="10.781056"
-       x2="98.344261"
-       y2="-9.2648945" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7101-3-0-4-5"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,59.178471)"
-       x1="94.996544"
-       y1="167.37457"
-       x2="94.996544"
-       y2="185.89658" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient11066-2"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,17.336617,239.17846)"
-       x1="99.006401"
-       y1="-10.013041"
-       x2="99.006401"
-       y2="9.3838177" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-7-3"
-       id="linearGradient11093"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="97.192268"
-       y1="11.37324"
-       x2="97.192268"
-       y2="-9.0183306" />
+       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-7-3"
+       id="linearGradient11093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
+       x1="97.192268"
+       y1="11.37324"
+       x2="97.192268"
+       y2="-9.0183306" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient5581-5-2-4-6-8-7-38-7-2"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
      inkscape:zoom="1"
-     inkscape:cx="338.22771"
+     inkscape:cx="740.22771"
      inkscape:cy="815.02446"
      inkscape:document-units="px"
      inkscape:current-layer="layer1"
      showgrid="false"
      showborder="false"
-     inkscape:window-width="2560"
-     inkscape:window-height="1376"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
      id="layer1"
      style="display:inline">
     <g
-       style="display:inline"
-       id="radio-unchecked"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
-       inkscape:label="#g15805">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
+       id="slider-horz-scale-has-marks-below"
+       transform="translate(0,-20)"
+       inkscape:label="#g5515">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:url(#linearGradient6167);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="g7025">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient4844);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222389;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+         id="g4740">
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       style="display:inline"
-       id="radio-checked"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-244.03705)"
-       inkscape:label="#g2928">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-1"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38699,-0.77583998)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025"
-         id="use7034"
-         width="1"
-         height="1" />
+       id="slider-horz-scale-has-marks-above"
+       transform="matrix(1,0,0,0.99944391,0,-20.008718)"
+       inkscape:label="#g5522">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:url(#linearGradient5573);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="g7444">
-        <rect
-           rx="7.9057436"
-           y="268.29523"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-2"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           ry="8.0419083" />
-        <rect
-           rx="2.7766726"
-           y="267.2233"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6"
-           style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           ry="2.7766726" />
-      </g>
-    </g>
-    <g
-       id="checkbox-checked"
-       transform="matrix(0.99650823,0,0,0.99810193,0.25541,-29.912933)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
+         id="g4740-2"
          style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400"
-         id="use5460"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect13523-5"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5708">
+         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
         <path
-           id="path12830-4-17-08"
-           transform="matrix(1.003504,0,0,1.0019017,-0.25630433,39.988835)"
-           d="M 50.9375,-7.59375 44,-0.75 42.125,-2.625 40,-2.65625 l 0,1.71875 2.9375,2.90625 c 0.584627,0.5855605 1.540374,0.5855605 2.125,0 l 5.9375,-6 0,-3.5625 -0.0625,0 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
+           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2"
            inkscape:connector-curvature="0" />
         <path
-           sodipodi:nodetypes="cccccccccc"
-           inkscape:connector-curvature="0"
-           id="path12830-4-17"
-           d="m 50.868001,31.380423 -6.9811,6.843038 -1.871896,-1.872654 -2.138425,-0.01563 0.01122,1.699486 2.936988,2.938186 c 0.586676,0.586674 1.537597,0.586674 2.124273,0 l 7.996316,-8.077832 0.002,-1.570761 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif" />
-      </g>
-    </g>
-    <g
-       id="radio-mixed"
-       transform="matrix(0.93617253,0,0,0.93566004,8.83241,-28.03304)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089173,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025"
-         id="use7034-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-9"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <g
-         id="use7164"
-         transform="matrix(1.0681792,0,0,1.0687642,118.74234,-2.1022682)">
-        <rect
-           style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4477"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4479"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8"
+           inkscape:connector-curvature="0" />
       </g>
+      <path
+         style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+         id="path4552-2-2"
+         inkscape:connector-curvature="0" />
     </g>
     <g
-       id="checkbox-mixed"
-       transform="translate(39.99573,-30)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-3.9091922e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400"
-         id="use5460-0"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+       id="slider-vert-scale-has-marks-above"
+       transform="translate(0,-20)"
+       inkscape:label="#g5529">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:url(#linearGradient6165);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="g5684">
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="37.393383"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-2"
-           style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="36.393433"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9"
-           style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+         id="g5028">
+        <path
+           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       id="checkbox-unchecked"
-       inkscape:label="#g14325"
-       transform="translate(0,-30)">
+       id="slider-vert-scale-has-marks-below"
+       transform="translate(0,-20)"
+       inkscape:label="#g5536">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:url(#linearGradient6163);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
+         id="g5028-9"
          style="display:inline"
-         id="g15812-6-6-1"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g5489-2-9-6-8-8"
-           style="display:inline">
-          <g
-             id="g5428-8-1-4-0-0" />
-        </g>
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect13523"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5400">
-        <rect
-           ry="6"
-           style="color:#000000;fill:url(#linearGradient4842);fill-opacity:1;stroke:#a1a1a1;stroke-width:2.09697676;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
+         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+           style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6"
+           inkscape:connector-curvature="0" />
         <path
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6"
            inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,-9.912935)"
-       id="checkbox-checked-hover">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0"
-         id="use5994"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14466"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5708"
-         id="use5736"
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
-         width="1000"
-         height="1052.3622" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,-10)"
-       id="checkbox-mixed-hover">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0"
-         id="use5994-2"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14482"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5684"
-         id="use5688"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-hover"
-       transform="translate(0,-10)">
+       id="slider-horz-scale-has-marks-below-dark"
+       inkscape:label="#g5543">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-2"
+         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+         style="color:#000000;fill:url(#linearGradient4838-7-9);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0">
-        <rect
-           ry="6"
-           style="color:#000000;fill:url(#linearGradient4840);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
+         transform="translate(0,180)"
+         id="g4740-3"
+         style="display:inline">
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-78"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-1"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-3"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 z"
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.4;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-3"
+           inkscape:connector-curvature="0" />
         <path
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0"
+           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720-9"
            inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14506"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
     </g>
     <g
-       id="checkbox-checked-active"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,10.087065)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5"
-         id="use6314"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect14685"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       id="slider-horz-scale-has-marks-above-dark"
+       transform="matrix(1,0,0,0.99944373,0,0.09114351)"
+       inkscape:label="#g5550">
       <path
          inkscape:connector-curvature="0"
-         id="path12830-4-17-08-5"
-         d="m 50.863858,32.380676 -6.94788,6.856765 -1.877805,-1.878566 -2.12818,-0.03131 0,1.722018 2.941895,2.911777 c 0.585502,0.586674 1.542679,0.586674 2.12818,0 l 5.946383,-6.01141 0,-3.569274 -0.06259,0 z"
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif" />
-      <use
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.6393686e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17"
-         id="use5756"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-mixed-active"
-       transform="translate(39.99573,10)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5"
-         id="use6314-1"
-         transform="translate(0.004272,0)"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14701"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use5812-4"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="37.393383"
-         rx="1.4843769"
-         ry="1.4843769" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9"
-         id="use5812"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-unchecked-active"
-       inkscape:label="#g14325"
-       transform="translate(0,10)">
+         id="path3497-3"
+         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+         style="color:#000000;fill:url(#linearGradient5571);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="translate(0,-3.9660404e-6)"
+         id="g4740-2-9"
          style="display:inline"
-         id="g5400-0-5">
-        <rect
-           ry="6"
-           style="color:#000000;fill:url(#linearGradient4838);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
+         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
+        <path
+           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2-29"
+           inkscape:connector-curvature="0" />
         <path
-           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.07000002;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-5"
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8-0"
            inkscape:connector-curvature="0" />
       </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14725"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+         id="path4552-2-2-8"
+         inkscape:connector-curvature="0" />
     </g>
     <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,30.087065)"
-       id="checkbox-checked-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7"
-         id="use6445"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g14999"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g15001"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g15003" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g15009">
-        <g
-           id="g15013" />
-      </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15021"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
+       id="slider-vert-scale-has-marks-above-dark"
+       inkscape:label="#g5557">
       <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,30)"
-       id="checkbox-mixed-insensitive">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7"
-         id="use6465"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect15025"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-insensitive"
-       transform="translate(0,30)">
+         id="path3497-0-7-4"
+         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient4838-7-9-0);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="translate(0,-3.9660404e-6)"
-         style="fill:#ededed;fill-opacity:1;display:inline"
-         id="g5400-0-5-7">
-        <rect
-           ry="6"
-           style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-3"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
+         transform="translate(0,180)"
+         id="g5028-6"
+         style="display:inline">
+        <path
+           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-8"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-9"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-5"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15057"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
     </g>
     <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-224.76084)"
-       id="radio-unchecked-hover"
-       style="display:inline"
-       inkscape:label="#g15392">
-      <g
-         style="display:inline"
-         id="g7025-8">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-0"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-1">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient4836);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+       id="slider-vert-scale-has-marks-below-dark"
+       inkscape:label="#g5564">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-9"
+         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient4838-7-9-8);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g5028-9-6"
+         style="display:inline"
+         transform="matrix(-1,0,0,1,540.0136,179.97214)">
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-2"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0-3"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-4"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6-3"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-9"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6-4"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
     </g>
     <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-225.48386)"
-       id="radio-checked-hover"
+       transform="translate(2.5596046e-6,10.000045)"
        style="display:inline"
-       inkscape:label="#g15404">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-79"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8"
-         id="use7392"
-         width="1"
-         height="1" />
+       id="slider-horz-scale-has-marks-below-hover"
+       inkscape:label="#g5515-6">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:url(#linearGradient7117-1);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="use7448"
-         transform="matrix(0.99411529,0,0,0.99411529,2.6893006,1.5417626)">
-        <rect
-           ry="8.0419083"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4483"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="268.29523"
-           rx="7.9057436" />
-        <rect
-           ry="2.7766726"
-           style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4485"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="267.2233"
-           rx="2.7766726" />
+         id="g4740-1">
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-63" />
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-6" />
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720-2" />
       </g>
     </g>
     <g
-       transform="matrix(0.93619363,0,0,0.93568113,8.82935,-8.033851)"
-       id="radio-mixed-hover"
-       inkscape:label="#g15422">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-8"
-         width="17.090481"
-         height="17.099842"
-         x="136.90158"
-         y="30.34798" />
-      <use
-         transform="matrix(0.99997746,0,0,0.99997746,-70.084327,-231.62484)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8"
-         id="use7392-3"
-         width="1"
-         height="1" />
+       style="display:inline"
+       id="slider-horz-scale-has-marks-above-hover"
+       transform="matrix(1,0,0,0.99944391,2.5596046e-6,9.991327)"
+       inkscape:label="#g5522-9">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-5);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="use7508"
-         transform="matrix(1.0681551,0,0,1.0687402,118.74293,-2.1013573)">
-        <rect
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect7530"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect7532"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
+         id="g4740-2-0"
+         style="display:inline"
+         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
+        <path
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2-8"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8-02"
+           inkscape:connector-curvature="0" />
       </g>
+      <path
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+         id="path4552-2-2-9"
+         inkscape:connector-curvature="0" />
     </g>
     <g
+       transform="translate(2.5596046e-6,10.000045)"
        style="display:inline"
-       id="radio-unchecked-active"
-       transform="matrix(0.93344283,0,0,0.93293183,-96.218362,-204.04632)"
-       inkscape:label="#g15458">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-3"
-         width="17.140844"
-         height="17.150234"
-         x="206.99081"
-         y="261.97894" />
+       id="slider-vert-scale-has-marks-above-hover"
+       inkscape:label="#g5529-3">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-3);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="matrix(1.0029243,0,0,1.0029243,-0.60505212,-0.76587606)"
-         style="display:inline"
-         id="g7025-1">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient4834);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-88"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+         id="g5028-2">
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-2" />
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-93" />
         <path
            inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-2"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="opacity:0.07000002;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-54" />
       </g>
     </g>
     <g
-       transform="matrix(0.93893104,0,0,0.93841705,-77.354156,-205.48315)"
-       id="radio-checked-active"
+       transform="translate(2.5596046e-6,10.000045)"
        style="display:inline"
-       inkscape:label="#g16048">
-      <use
-         transform="matrix(0.99415483,0,0,0.99415482,1.2096678,1.53112)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1"
-         id="use5399"
-         width="1"
-         height="1" />
+       id="slider-vert-scale-has-marks-below-hover"
+       inkscape:label="#g5536-0">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-2);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
+         id="g5028-9-66"
          style="display:inline"
-         id="g16050"
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-        <g
-           id="g16052" />
+         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
+        <path
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0-0"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6-8"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6-1"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-4"
-         width="17.040653"
-         height="17.049988"
-         x="206.99059"
-         y="261.97876" />
-      <rect
-         ry="7.9946065"
-         style="opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-8"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="268.25815"
-         rx="7.8592429" />
-      <rect
-         ry="2.7603407"
-         style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="267.19257"
-         rx="2.7603407" />
     </g>
     <g
+       transform="translate(2.5596046e-6,130.00005)"
        style="display:inline"
-       id="radio-mixed-active"
-       transform="matrix(0.93617253,0,0,0.93566004,-56.78315,-204.76084)"
-       inkscape:label="#g16079">
-      <use
-         transform="matrix(0.99708419,0,0,0.99708419,0.60329674,0.76365256)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1"
-         id="use5399-3"
-         width="1"
-         height="1" />
+       id="slider-horz-scale-has-marks-below-backdrop-insensitive"
+       inkscape:label="#g5515-6-0-2-0-2">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5-5-9-2-9"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-         id="g16081"
-         style="display:inline">
-        <g
-           id="g16083" />
-      </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-32"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-4"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="269.49341"
-         rx="1.5855805"
-         ry="1.586449" />
-      <rect
-         style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="268.42465"
-         rx="1.5855805"
-         ry="1.586449" />
+         id="g4740-1-5-6-8-2" />
     </g>
     <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-184.76084)"
-       id="radio-unchecked-insensitive"
        style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-5"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         style="display:inline"
-         id="g7025-1-7">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-7"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-8">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-88-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-      </g>
+       id="slider-horz-scale-has-marks-above-backdrop-insensitive"
+       transform="matrix(1,0,0,0.99944391,2.5596046e-6,129.99133)"
+       inkscape:label="#g5522-9-5-3-0-5">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-4-8-8-9"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.0002781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-185.48386)"
-       id="radio-checked-insensitive"
+       transform="translate(2.5596046e-6,130.00005)"
        style="display:inline"
-       inkscape:label="#g15536">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-9"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7"
-         id="use5683"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,32.050751)"
-       id="radio-mixed-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-98"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701507,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7"
-         id="use5683-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
+       id="slider-vert-scale-has-marks-above-backdrop-insensitive"
+       inkscape:label="#g5529-3-5-9-3-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6-5-0-0-3"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,170.08706)"
-       id="checkbox-checked-dark">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08721831)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-2-5"
-         id="use5671"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17347"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
+       transform="translate(2.5596046e-6,130.00005)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-below-backdrop-insensitive"
+       inkscape:label="#g5536-0-7-4-3-7">
       <path
          inkscape:connector-curvature="0"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 2.941895,2.91177 c 0.586676,0.58668 1.541503,0.58668 2.128179,0 l 5.97768,-6.01141 0,-0.28178 c 0,-0.90678 -0.53207,-1.67899 -1.283166,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7" />
+         id="path3497-0-3-4-7-7-2"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <g
+       transform="translate(2.4701977e-6,30.000004)"
+       style="display:inline"
+       id="slider-horz-scale-has-marks-below-hover-dark"
+       inkscape:label="#g5543-1">
       <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380411 -6.9811,6.84304 -1.871896,-1.87265 -2.138425,-0.0156 0.01122,1.69948 2.936988,2.938193 c 0.586676,0.58667 1.537597,0.58667 2.124273,0 l 7.996316,-8.077833 0.002,-1.57077 z"
-         id="path12830-4-17-0"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
+         id="path3497-8-2-0"
+         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+         style="color:#000000;fill:url(#linearGradient7101-3);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         transform="translate(0,180)"
+         id="g4740-3-3"
+         style="display:inline">
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-1-8"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-3-2"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720-9-9"
+           inkscape:connector-curvature="0" />
+      </g>
     </g>
     <g
-       inkscape:label="#g14334"
-       transform="translate(39.995728,170)"
-       id="checkbox-mixed-dark">
-      <use
-         transform="translate(0.004272,6.0339596e-6)"
+       style="display:inline"
+       id="slider-horz-scale-has-marks-above-hover-dark"
+       transform="matrix(1,0,0,0.99944373,2.4701977e-6,30.091144)"
+       inkscape:label="#g5550-2">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-3-5"
+         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-9);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g4740-2-9-6"
          style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-2-5"
-         id="use5671-4"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17363"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="36.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1"
-         style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2-29-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8-0-8"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+         id="path4552-2-2-8-9"
+         inkscape:connector-curvature="0" />
     </g>
     <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-dark"
-       transform="translate(0,170)">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17387"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+       transform="translate(2.4701977e-6,30.000004)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-above-hover-dark"
+       inkscape:label="#g5557-6">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-4-4"
+         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-5);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           style="display:inline"
-           id="g15812-6-6-1-5-6"
-           transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-          <g
-             transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-             id="g5489-2-9-6-8-8-4-5"
-             style="display:inline">
-            <g
-               id="g5428-8-1-4-0-0-2-6" />
-          </g>
-        </g>
-        <rect
-           y="30.362183"
-           x="17"
-           height="16"
-           width="16"
-           id="rect13523-0-9"
-           style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <g
-           id="g5400-2-5">
-          <rect
-             ry="6"
-             style="color:#000000;fill:url(#linearGradient7109);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-9-4"
-             d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 z"
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-7-9-4"
-             d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 z"
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#393f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
-          <path
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6"
-             inkscape:connector-curvature="0" />
-        </g>
+         transform="translate(0,180)"
+         id="g5028-6-2"
+         style="display:inline">
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-8-0"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-9-2"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-5-4"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       id="checkbox-checked-hover-dark"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,190.08706)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-hover-dark"
-         id="use5987"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-190.44854)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect17795"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       transform="translate(2.4701977e-6,30.000004)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-below-hover-dark"
+       inkscape:label="#g5564-7">
       <path
          inkscape:connector-curvature="0"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 2.941895,2.91177 c 0.586676,0.58668 1.541503,0.58668 2.128179,0 l 5.97768,-6.01141 0,-0.28178 c 0,-0.90678 -0.53207,-1.67899 -1.283166,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7-4" />
-      <use
-         transform="translate(3.6476755e-7,-4.6063144e-6)"
+         id="path3497-0-9-0"
+         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-6);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g5028-9-6-2"
          style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-0"
-         id="use6213"
-         width="1"
-         height="1" />
+         transform="matrix(-1,0,0,1,540.0136,179.97214)">
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0-3-4"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6-3-4"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6-4-9"
+           inkscape:connector-curvature="0" />
+      </g>
     </g>
     <g
-       id="checkbox-mixed-hover-dark"
-       transform="translate(39.995728,190)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-hover-dark"
-         id="use5987-9"
-         transform="translate(0.004272,-190)"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17813"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5-2"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-0-1"
-         id="use6244"
-         width="1"
-         height="1" />
+       transform="translate(2.5596046e-6,100.00005)"
+       style="display:inline"
+       id="slider-horz-scale-has-marks-below-backdrop"
+       inkscape:label="#g5515-6-0-2-0-2-6">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5-5-9-2-9-6"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g4740-1-5-6-8-2-3" />
     </g>
     <g
-       transform="translate(0,190)"
-       id="checkbox-unchecked-hover-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17839"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-1"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           style="display:inline"
-           id="g15812-6-6-1-5-6-4"
-           transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-          <g
-             transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-             id="g5489-2-9-6-8-8-4-5-3"
-             style="display:inline">
-            <g
-               id="g5428-8-1-4-0-0-2-6-7" />
-          </g>
-        </g>
-        <rect
-           y="30.362183"
-           x="17"
-           height="16"
-           width="16"
-           id="rect13523-0-9-0"
-           style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <g
-           id="g5400-2-5-9">
-          <rect
-             ry="6"
-             style="color:#000000;fill:url(#linearGradient7107);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-9"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-9-4-2"
-             d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 z"
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-7-9-4-6"
-             d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 z"
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#474f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
-          <path
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6-2"
-             inkscape:connector-curvature="0" />
-        </g>
-      </g>
+       style="display:inline"
+       id="slider-horz-scale-has-marks-above-backdrop"
+       transform="matrix(1,0,0,0.99944391,2.5596046e-6,99.99133)"
+       inkscape:label="#g5522-9-5-3-0-5-1">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-4-8-8-9-2"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,210.08706)"
-       id="checkbox-checked-active-dark">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722833)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2"
-         id="use6163"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17971"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
+       transform="translate(2.5596046e-6,100.00005)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-above-backdrop"
+       inkscape:label="#g5529-3-5-9-3-7-0">
       <path
          inkscape:connector-curvature="0"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 2.941895,2.91177 c 0.586676,0.58668 1.541502,0.58668 2.128179,0 l 5.977679,-6.01141 0,-0.28178 c 0,-0.90678 -0.53207,-1.67899 -1.283165,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7-4-6" />
-      <use
-         transform="translate(3.6476755e-7,-4.2126285e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-0"
-         id="use15213-8"
-         width="1000"
-         height="1052.3622" />
+         id="path3497-0-7-6-5-0-0-3-5"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       inkscape:label="#g14334"
-       transform="translate(39.995728,210)"
-       id="checkbox-mixed-active-dark">
-      <use
-         transform="translate(0.004272,-3.9660404e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2"
-         id="use6163-0"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17989"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5-2-4"
-         style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="translate(-4.609375e-7,2.6171874e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-0-1"
-         id="use6244-6"
-         width="1"
-         height="1" />
+       transform="translate(2.5596046e-6,100.00005)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-below-backdrop"
+       inkscape:label="#g5536-0-7-4-3-7-2">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3-4-7-7-2-0"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-active-dark"
-       transform="translate(0,210)">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect18015"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+       transform="translate(2.4403953e-6,70.00005)"
+       style="display:inline"
+       id="slider-horz-scale-has-marks-below-insensitive"
+       inkscape:label="#g5515-6-0-2-0-2-6-1">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5-5-9-2-9-6-5"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-2"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           id="g5400-2-5-3">
-          <rect
-             ry="6"
-             style="color:#000000;fill:url(#linearGradient7105);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-2"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6-5"
-             inkscape:connector-curvature="0" />
-        </g>
-      </g>
+         id="g4740-1-5-6-8-2-3-9" />
     </g>
     <g
-       transform="translate(0,230)"
-       id="checkbox-unchecked-insensitive-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect18233"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-2-1"
-         inkscape:label="#g14325"
-         transform="translate(-3.3541394e-8,6e-6)">
-        <g
-           id="g5400-2-5-3-8">
-          <rect
-             ry="6"
-             style="color:#000000;fill:#323636;fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652000000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-2-9"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        </g>
-      </g>
+       style="display:inline"
+       id="slider-horz-scale-has-marks-above-insensitive"
+       transform="matrix(1,0,0,0.99944391,2.4403953e-6,69.991326)"
+       inkscape:label="#g5522-9-5-3-0-5-1-0">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-4-8-8-9-2-7"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       inkscape:label="#g14325"
-       id="checkbox-checked-insensitive-dark"
-       transform="translate(20,230)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2-1"
-         id="use6419"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect18292"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+       transform="translate(2.4403953e-6,70.00005)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-above-insensitive"
+       inkscape:label="#g5529-3-5-9-3-7-0-9">
       <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
+         id="path3497-0-7-6-5-0-0-3-5-3"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
-       transform="translate(40,230)"
-       id="checkbox-mixed-insensitive-dark"
-       inkscape:label="#g14325">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2-1"
-         id="use6419-0"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect18306"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427000000010;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g15805"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-44.76084)"
-       id="radio-unchecked-dark"
-       style="display:inline">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect18880"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(8.5871184e-7,9.4903214e-6)"
-         style="display:inline"
-         id="g7025-4-5">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient7103);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-5-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;fill:#262a2a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-5-4"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="opacity:0.17000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g2928"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-44.03705)"
-       id="radio-checked-dark"
-       style="display:inline">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583891)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5"
-         id="use6849"
-         width="1000"
-         height="1052.3622" />
-      <rect
-         y="261.97867"
-         x="456.99054"
-         height="17.150867"
-         width="17.141478"
-         id="rect18900"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g7024">
-        <rect
-           ry="2.7197769"
-           style="opacity:0.9;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect15095-0-4"
-           width="5.4426146"
-           height="5.4395537"
-           x="462.27869"
-           y="266.20828"
-           rx="2.7197769" />
-        <rect
-           ry="2.7197769"
-           style="color:#000000;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect15095-0"
-           width="5.4426146"
-           height="5.4395537"
-           x="462.27869"
-           y="267.28021"
-           rx="2.7197769" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g10885"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,171.96696)"
-       id="radio-mixed-dark">
-      <use
-         transform="translate(-70.089184,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5"
-         id="use6849-8"
-         width="1000"
-         height="1052.3622" />
-      <rect
-         y="30.347799"
-         x="136.9014"
-         height="17.100227"
-         width="17.090866"
-         id="rect18922"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g7055">
-        <rect
-           ry="1.586449"
-           rx="1.5855805"
-           y="35.724964"
-           x="140.11049"
-           height="3.1728981"
-           width="9.6136122"
-           id="rect4479-9-0-8"
-           style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <rect
-           ry="1.586449"
-           rx="1.5855805"
-           y="36.793736"
-           x="140.11049"
-           height="3.1728981"
-           width="9.6136122"
-           id="rect4479-9-0"
-           style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-insensitive-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,15.23916)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19038"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0.03338152,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2-0-3">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0-2-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0-2-2">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1-7-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-      </g>
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="radio-checked-insensitive-dark"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,14.51614)">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046441)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0-3"
-         id="use7470"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19052"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="2.7037716"
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598865999999981;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-insensitive-dark"
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,232.05075)">
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0-3"
-         id="use7470-8"
-         width="1"
-         height="1" />
-      <g
-         transform="translate(-320.08917,-231.63092)"
-         id="g19064"
-         style="display:inline" />
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect19068"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9"
-         style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716000000003;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       style="display:inline"
-       id="radio-unchecked-hover-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-24.76084)"
-       inkscape:label="#g15805">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19380"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         transform="translate(9.1830016e-7,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient7101);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-5-4-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;fill:#262a2a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-5-4-0"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;fill:#4c5454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2-0"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="opacity:0.17000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      </g>
+       transform="translate(2.4403953e-6,70.00005)"
+       style="display:inline"
+       id="slider-vert-scale-has-marks-below-insensitive"
+       inkscape:label="#g5536-0-7-4-3-7-2-8">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3-4-7-7-2-0-8"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,330.00005)"
        style="display:inline"
-       id="radio-checked-hover-dark"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-24.03705)"
-       inkscape:label="#g2928">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583991)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2"
-         id="use7140"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19416"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="translate(1.1102355e-7,-5.7254078e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7024"
-         id="use7028"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="radio-mixed-hover-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,191.96696)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089174,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2"
-         id="use7140-5"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19440"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <use
-         transform="translate(1.7462727e-6,4.9032167e-7)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7055"
-         id="use7059"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g15805"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-4.76084)"
-       id="radio-unchecked-active-dark"
-       style="display:inline">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19536"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(9.1830016e-7,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2-0">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0-2"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0-2">
-            <rect
-               ry="15.453857"
-               style="color:#000000;fill:url(#linearGradient7099);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2-0-7"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g2928"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-4.03705)"
-       id="radio-checked-active-dark"
-       style="display:inline">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583991)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0"
-         id="use7303"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97867"
-         x="456.99054"
-         height="17.150867"
-         width="17.141478"
-         id="rect19572"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="translate(1.1102355e-7,-5.7254081e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7024"
-         id="use7028-7"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g10885"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,211.96696)"
-       id="radio-mixed-active-dark">
-      <use
-         transform="translate(-70.089174,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0"
-         id="use7303-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.347799"
-         x="136.9014"
-         height="17.100227"
-         width="17.090866"
-         id="rect19596"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="translate(1.7462727e-6,-5.0967833e-7)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7055"
-         id="use7059-6"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-checked-backdrop"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,50.087065)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722939)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0"
-         id="use6551"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g19927"
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19929"
-           style="display:inline">
-          <g
-             id="g19931" />
-        </g>
-      </g>
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect19941"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       id="slider-horz-scale-has-marks-below-backdrop-insensitive-dark"
+       inkscape:label="#g5515-6-0-2-0-2-66">
       <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#54595a;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-3"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       id="checkbox-mixed-backdrop"
-       transform="translate(39.99573,50)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0"
-         id="use6551-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19945"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+         id="path3497-8-5-5-9-2-9-8"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         style="display:inline"
-         id="g19947"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19949"
-           style="display:inline">
-          <g
-             id="g19951" />
-        </g>
-      </g>
-      <rect
-         style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203-6"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       transform="translate(0,50)"
-       id="checkbox-unchecked-backdrop"
-       inkscape:label="#g14325">
-      <rect
-         ry="2.8844237"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect19971"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-backdrop"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-164.76084)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19981"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
+         id="g4740-1-5-6-8-2-4" />
     </g>
     <g
-       inkscape:label="#g15536"
        style="display:inline"
-       id="radio-checked-backdrop"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-165.48386)">
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19995"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5"
-         id="use5805"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6-3"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-backdrop"
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,52.050751)">
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect20011"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5"
-         id="use5805-1"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7-9"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,70.08706)"
-       id="checkbox-checked-backdrop-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722438)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7"
-         id="use6749"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g20167"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20169"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20171" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g20175">
-        <g
-           id="g20177" />
-      </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20181"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
+       id="slider-horz-scale-has-marks-above-backdrop-insensitive-dark"
+       transform="matrix(1,0,0,0.99944391,2.4701977e-6,329.99133)"
+       inkscape:label="#g5522-9-5-3-0-5-7">
       <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c7c7c7;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380443 -6.981098,6.843039 -1.871898,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938186 c 0.586676,0.586675 1.537597,0.586675 2.124275,0 l 7.996314,-8.077832 0.002,-1.57076 z"
-         id="path12830-4-17-2-3-9"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,70)"
-       id="checkbox-mixed-backdrop-insensitive">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7"
-         id="use6749-5"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect20185"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)"
-         id="g20187"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20189"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20191" />
-        </g>
-      </g>
-      <g
-         transform="translate(-40.874249,-1.0164925)"
-         id="g20195"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20197"
-           transform="translate(-400.08917,-231.63092)" />
-      </g>
-      <rect
-         style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203-6-8"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-backdrop-insensitive"
-       transform="translate(0,70)">
-      <rect
-         ry="2.8844237"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-7"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20211"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-144.76084)"
-       id="radio-unchecked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20221"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-7"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-145.48386)"
-       id="radio-checked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <g
-         style="display:inline"
-         id="g20225"
-         transform="translate(250,1.6004853e-6)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-           id="g20227"
-           style="display:inline">
-          <g
-             id="g20229" />
-        </g>
-      </g>
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20235"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7"
-         id="use5938"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6-3-9"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,72.05075)"
-       id="radio-mixed-backdrop-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20251"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7"
-         id="use5938-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7-9-6"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-backdrop-dark"
-       transform="translate(0,250)">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23509"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         ry="2.8844237"
-         style="color:#000000;fill:#393f3f;fill-opacity:1;stroke:#1e2222;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-5-8-2-9-8"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862192"
-         rx="2.8382866" />
-    </g>
-    <g
-       transform="translate(20,250)"
-       id="checkbox-checked-backdrop-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23521"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8"
-         id="use6506"
-         width="1"
-         height="1" />
-      <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c9cbc9;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-mixed-backdrop-dark"
-       transform="translate(40,250)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8"
-         id="use6506-5"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23535"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1-4"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,35.23916)"
-       id="radio-unchecked-backdrop-dark"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23547"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-6-4-1-7-7-8"
-         width="14.954509"
-         height="14.9627"
-         x="207.56259"
-         y="262.51312"
-         rx="7.8516736" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,34.51614)"
-       id="radio-checked-backdrop-dark"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046823)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8"
-         id="use7611"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23559"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <rect
-         ry="2.7037716"
-         style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598866;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7-2"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,252.05075)"
-       id="radio-mixed-backdrop-dark"
-       inkscape:label="#g15554">
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8"
-         id="use7611-8"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g23569"
-         transform="translate(-320.08917,-231.63092)" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23573"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9-9"
-         style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(0,270)"
-       id="checkbox-unchecked-backdrop-insensitive-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23585"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="2.8844237"
-         style="color:#000000;fill:#323636;fill-opacity:1;stroke:#1c1f1f;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;fill-rule:nonzero"
-         id="rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862192"
-         rx="2.8382866" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-checked-backdrop-insensitive-dark"
-       transform="translate(20,270)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         id="use6598"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23597"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <path
-         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#454c4c;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8-5"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       transform="translate(40,270)"
-       id="checkbox-mixed-backdrop-insensitive-dark"
-       inkscape:label="#g14325">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         id="use6598-5"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23611"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1-4-8"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-backdrop-insensitive-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,55.23916)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect23623"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.06847161;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-6-4-1-7-7-8-9"
-         width="14.954509"
-         height="14.9627"
-         x="207.56259"
-         y="262.51312"
-         rx="7.8516736" />
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="radio-checked-backdrop-insensitive-dark"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,54.51614)">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046823)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8-9"
-         id="use7762"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect23635"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="2.7037716"
-         style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598866;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7-2-1"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-backdrop-insensitive-dark"
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,272.05075)">
-      <g
-         transform="translate(-320.08917,-231.63092)"
-         id="g23645"
-         style="display:inline" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8-9"
-         id="use7762-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect23649"
-         style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9-9-0"
-         style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       id="slider-horz-scale-has-marks-below"
-       transform="translate(0,-20)"
-       inkscape:label="#g5515">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:url(#linearGradient6167);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740">
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       id="slider-horz-scale-has-marks-above"
-       transform="matrix(1,0,0,0.99944391,0,-20.008718)"
-       inkscape:label="#g5522">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497"
+         id="path3497-9-4-8-8-9-4"
          d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:url(#linearGradient5573);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
-        <path
-           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
-         id="path4552-2-2"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       id="slider-vert-scale-has-marks-above"
-       transform="translate(0,-20)"
-       inkscape:label="#g5529">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:url(#linearGradient6165);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028">
-        <path
-           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       id="slider-vert-scale-has-marks-below"
-       transform="translate(0,-20)"
-       inkscape:label="#g5536">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:url(#linearGradient6163);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
-        <path
-           style="color:#000000;fill:#c0c0c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       id="slider-horz-scale-has-marks-below-dark"
-       inkscape:label="#g5543">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-2"
-         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
-         style="color:#000000;fill:url(#linearGradient4838-7-9);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g4740-3"
-         style="display:inline">
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-1"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720-9"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       id="slider-horz-scale-has-marks-above-dark"
-       transform="matrix(1,0,0,0.99944373,0,0.09114351)"
-       inkscape:label="#g5550">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-3"
-         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
-         style="color:#000000;fill:url(#linearGradient5571);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2-9"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
-        <path
-           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2-29"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8-0"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
-         id="path4552-2-2-8"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       id="slider-vert-scale-has-marks-above-dark"
-       inkscape:label="#g5557">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-4"
-         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient4838-7-9-0);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g5028-6"
-         style="display:inline">
-        <path
-           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-8"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-9"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-5"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       id="slider-vert-scale-has-marks-below-dark"
-       inkscape:label="#g5564">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-9"
-         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient4838-7-9-8);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9-6"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,179.97214)">
-        <path
-           style="color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6-4"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.5596046e-6,10.000045)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-hover"
-       inkscape:label="#g5515-6">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:url(#linearGradient7117-1);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1">
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-63" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-6" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720-2" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-hover"
-       transform="matrix(1,0,0,0.99944391,2.5596046e-6,9.991327)"
-       inkscape:label="#g5522-9">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-5);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2-0"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
-        <path
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2-8"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8-02"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
-         id="path4552-2-2-9"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       transform="translate(2.5596046e-6,10.000045)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-hover"
-       inkscape:label="#g5529-3">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-3);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-2">
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-2" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-93" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-54" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.5596046e-6,10.000045)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-hover"
-       inkscape:label="#g5536-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-2);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9-66"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
-        <path
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0-0"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6-8"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6-1"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.5596046e-6,130.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-backdrop-insensitive"
-       inkscape:label="#g5515-6-0-2-0-2">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-backdrop-insensitive"
-       transform="matrix(1,0,0,0.99944391,2.5596046e-6,129.99133)"
-       inkscape:label="#g5522-9-5-3-0-5">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.0002781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.5596046e-6,130.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-backdrop-insensitive"
-       inkscape:label="#g5529-3-5-9-3-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.5596046e-6,130.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-backdrop-insensitive"
-       inkscape:label="#g5536-0-7-4-3-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,30.000004)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-hover-dark"
-       inkscape:label="#g5543-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-2-0"
-         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
-         style="color:#000000;fill:url(#linearGradient7101-3);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g4740-3-3"
-         style="display:inline">
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-1-8"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-3-2"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720-9-9"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-hover-dark"
-       transform="matrix(1,0,0,0.99944373,2.4701977e-6,30.091144)"
-       inkscape:label="#g5550-2">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-3-5"
-         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-9);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2-9-6"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2-29-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8-0-8"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
-         id="path4552-2-2-8-9"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,30.000004)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-hover-dark"
-       inkscape:label="#g5557-6">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-4-4"
-         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-5);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g5028-6-2"
-         style="display:inline">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-8-0"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-9-2"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-5-4"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.4701977e-6,30.000004)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-hover-dark"
-       inkscape:label="#g5564-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-9-0"
-         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-6);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9-6-2"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,179.97214)">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0-3-4"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6-3-4"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6-4-9"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.5596046e-6,100.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-backdrop"
-       inkscape:label="#g5515-6-0-2-0-2-6">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9-6"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2-3" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-backdrop"
-       transform="matrix(1,0,0,0.99944391,2.5596046e-6,99.99133)"
-       inkscape:label="#g5522-9-5-3-0-5-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9-2"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.5596046e-6,100.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-backdrop"
-       inkscape:label="#g5529-3-5-9-3-7-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3-5"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.5596046e-6,100.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-backdrop"
-       inkscape:label="#g5536-0-7-4-3-7-2">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2-0"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4403953e-6,70.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-insensitive"
-       inkscape:label="#g5515-6-0-2-0-2-6-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9-6-5"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2-3-9" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-insensitive"
-       transform="matrix(1,0,0,0.99944391,2.4403953e-6,69.991326)"
-       inkscape:label="#g5522-9-5-3-0-5-1-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9-2-7"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4403953e-6,70.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-insensitive"
-       inkscape:label="#g5529-3-5-9-3-7-0-9">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3-5-3"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4403953e-6,70.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-insensitive"
-       inkscape:label="#g5536-0-7-4-3-7-2-8">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2-0-8"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,330.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-backdrop-insensitive-dark"
-       inkscape:label="#g5515-6-0-2-0-2-66">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9-8"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2-4" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-backdrop-insensitive-dark"
-       transform="matrix(1,0,0,0.99944391,2.4701977e-6,329.99133)"
-       inkscape:label="#g5522-9-5-3-0-5-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9-4"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027804;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,330.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-backdrop-insensitive-dark"
-       inkscape:label="#g5529-3-5-9-3-7-2">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3-3"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,330.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-backdrop-insensitive-dark"
-       inkscape:label="#g5536-0-7-4-3-7-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2-5"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,300.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-backdrop-dark"
-       inkscape:label="#g5515-6-0-2-0-2-6-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9-6-2"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2-3-7" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-backdrop-dark"
-       transform="matrix(1,0,0,0.99944391,2.4701977e-6,299.99133)"
-       inkscape:label="#g5522-9-5-3-0-5-1-4">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9-2-6"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,300.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-backdrop-dark"
-       inkscape:label="#g5529-3-5-9-3-7-0-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3-5-30"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,300.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-backdrop-dark"
-       inkscape:label="#g5536-0-7-4-3-7-2-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2-0-87"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,270.00005)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-insensitive-dark"
-       inkscape:label="#g5515-6-0-2-0-2-6-1-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-5-9-2-9-6-5-3"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-5-6-8-2-3-9-6" />
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-insensitive-dark"
-       transform="matrix(1,0,0,0.99944391,2.4701977e-6,269.99133)"
-       inkscape:label="#g5522-9-5-3-0-5-1-0-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-4-8-8-9-2-7-2"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,270.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-insensitive-dark"
-       inkscape:label="#g5529-3-5-9-3-7-0-9-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-5-0-0-3-5-3-6"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,270.00005)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-insensitive-dark"
-       inkscape:label="#g5536-0-7-4-3-7-2-8-0">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-4-7-7-2-0-8-5"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,40.000045)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-active"
-       inkscape:label="#g5515-6-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-5-8"
-         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-6);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-1-7">
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-63-8" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-6-4" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720-2-1" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-active"
-       transform="matrix(1,0,0,0.99944391,2.4701977e-6,39.991327)"
-       inkscape:label="#g5522-9-5">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-9-7"
-         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-5-5);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2-0-6"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
-        <path
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2-8-2"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8-02-1"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
-         id="path4552-2-2-9-1"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,40.000045)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-active"
-       inkscape:label="#g5529-3-1">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-6-6"
-         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-3-7);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-2-8">
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-2-3" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-93-8" />
-        <path
-           inkscape:connector-curvature="0"
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-54-5" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.4701977e-6,40.000045)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-active"
-       inkscape:label="#g5536-0-2">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-3-3"
-         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
-         style="color:#000000;fill:url(#linearGradient7117-1-2-4);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9-66-6"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
-        <path
-           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0-0-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6-8-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6-1-9"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.4701977e-6,60.000004)"
-       style="display:inline"
-       id="slider-horz-scale-has-marks-below-active-dark"
-       inkscape:label="#g5543-1-3">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-8-2-0-3"
-         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-0);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g4740-3-3-5"
-         style="display:inline">
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-1-8-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-3-2-6"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
-           id="path4720-9-9-2"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="slider-horz-scale-has-marks-above-active-dark"
-       transform="matrix(1,0,0,0.99944373,2.4701977e-6,60.091144)"
-       inkscape:label="#g5550-2-6">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-3-5-7"
-         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-0-6);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g4740-2-9-6-9"
-         style="display:inline"
-         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
-           id="path4552-2-29-7-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
-           id="path4552-6-8-0-8-9"
-           inkscape:connector-curvature="0" />
-      </g>
-      <path
-         style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
-         id="path4552-2-2-8-9-0"
-         inkscape:connector-curvature="0" />
-    </g>
-    <g
-       transform="translate(2.4701977e-6,60.000004)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-above-active-dark"
-       inkscape:label="#g5557-6-9">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-7-4-4-6"
-         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-0-9);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         transform="translate(0,180)"
-         id="g5028-6-2-0"
-         style="display:inline">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-8-0-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-9-2-7"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-5-4-7"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       transform="translate(2.4701977e-6,60.000004)"
-       style="display:inline"
-       id="slider-vert-scale-has-marks-below-active-dark"
-       inkscape:label="#g5564-7-7">
-      <path
-         inkscape:connector-curvature="0"
-         id="path3497-0-9-0-6"
-         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
-         style="color:#000000;fill:url(#linearGradient7101-3-0-4);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-      <g
-         id="g5028-9-6-2-0"
-         style="display:inline"
-         transform="matrix(-1,0,0,1,540.0136,179.97214)">
-        <path
-           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
-           id="path4906-0-3-4-4"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
-           id="path4906-3-6-3-4-3"
-           inkscape:connector-curvature="0" />
-        <path
-           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
-           id="path4906-6-6-4-9-3"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(1.990788,0,0,1.9939718,334.59299,125.13908)"
-       id="checkbox-checked-selectionmode">
-      <g
-         id="use8051"
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)">
-        <rect
-           ry="4.1330299"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.48329952;marker:none;enable-background:accumulate"
-           id="rect8196"
-           width="20.022388"
-           height="20.022388"
-           x="14.473747"
-           y="27.822527"
-           rx="4.1330299" />
-        <g
-           id="g8323">
-          <rect
-             ry="2.1659286"
-             style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient10493);fill-opacity:1;stroke:#555753;stroke-width:0.49806672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-             id="rect8133"
-             width="10.610355"
-             height="10.524323"
-             x="19.186378"
-             y="32.48991"
-             rx="2.1536846" />
-          <path
-             inkscape:connector-curvature="0"
-             id="path8135"
-             d="m 19.391061,40.242103 0,0.746384 c 0,0.995613 0.820325,1.772664 1.841514,1.772664 l 6.531232,0 c 1.021188,0 1.81696,-0.777051 1.81696,-1.772664 l 0,-0.746384 c 0,0.995611 -0.795772,1.772664 -1.81696,1.772664 l -6.531232,0 c -1.021189,0 -1.841514,-0.777053 -1.841514,-1.772664 z"
-             style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-          <path
-             sodipodi:nodetypes="csssscssc"
-             inkscape:connector-curvature="0"
-             id="path8137"
-             d="m 19.391061,39.586662 0,0.785713 c 0,1.048072 0.820325,1.866067 1.841514,1.866067 l 6.531232,0 c 1.021188,0 1.81696,-0.817995 1.81696,-1.866067 l 0,-0.785713 c 0,1.048072 -0.795772,2.170876 -1.81696,2.170876 l -6.531232,0 c -1.021189,0 -1.841514,-1.122804 -1.841514,-2.170876 z"
-             style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50055969;marker:none;enable-background:accumulate" />
-        </g>
-      </g>
-      <g
-         id="g8055">
-        <path
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2870bc;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-           d="m 50.868001,31.261445 -6.9811,6.803452 -1.871896,-1.861821 -2.138425,-0.01553 0.01122,1.689654 2.936988,2.921189 c 0.586676,0.58328 1.537597,0.58328 2.124273,0 l 7.996316,-8.031103 0.002,-1.561674 z"
-           id="path8059"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cccccccccc" />
-      </g>
-    </g>
-    <g
-       id="checkbox-checked-hover-selectionmode"
-       transform="matrix(1.9947791,0,0,1.9939719,334.38167,169.09433)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880068,-0.06479538)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8666"
-         width="100%"
-         height="100%" />
-      <g
-         id="use8507">
-        <use
-           style="display:inline;stroke:#555753"
-           x="0"
-           y="0"
-           xlink:href="#g8323"
-           id="use8585"
-           transform="matrix(1.0014962,0,0,1.0019016,19.88007,-0.06478938)"
-           width="100%"
-           height="100%" />
-        <rect
-           style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.68300003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
-           id="rect8587"
-           width="10.124799"
-           height="10.08457"
-           x="39.367149"
-           y="32.726746"
-           rx="1.8288052"
-           ry="1.8288052" />
-      </g>
-      <use
-         height="1052.3622"
-         width="1000"
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
-         id="use8067"
-         xlink:href="#g8055"
-         y="0"
-         x="0"
-         style="display:inline" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(1.9947791,0,0,1.9939719,334.38167,213.04961)"
-       id="checkbox-checked-active-selectionmode">
-      <use
-         height="100%"
-         width="100%"
-         id="use8683"
-         xlink:href="#rect8196"
-         y="0"
-         x="0"
-         style="display:inline"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880068,-0.04236738)" />
-      <use
-         style="display:inline;stroke:#555753"
-         x="0"
-         y="0"
-         xlink:href="#use8071"
-         id="use8456"
-         width="100%"
-         height="100%" />
-      <use
-         height="1052.3622"
-         width="1000"
-         transform="matrix(0.99799923,0,0,0.99999995,0.10593796,0.02244762)"
-         id="use8067-8"
-         xlink:href="#g8055"
-         y="0"
-         x="0"
-         style="display:inline" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(1.9947791,0,0,1.9939719,334.38167,256.96017)"
-       id="checkbox-checked-backdrop-selectionmode">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880068,0.00248762)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8700"
-         width="100%"
-         height="100%" />
-      <rect
-         ry="2.1665556"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.49543846;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="use8386"
-         width="10.542755"
-         height="10.527368"
-         x="39.169666"
-         y="32.578323"
-         rx="2.1399629" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g8101"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g8103"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g8105" />
-        </g>
-      </g>
-      <path
-         sodipodi:nodetypes="cccccccccc"
-         inkscape:connector-curvature="0"
-         id="path8109"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2870bc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99699712;marker:none;enable-background:accumulate" />
-    </g>
-    <g
-       id="checkbox-selectionmode"
-       transform="matrix(1.990788,0,0,1.9939718,378.59299,125.13908)"
-       inkscape:label="#g10801">
-      <g
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
-         id="g8239" />
-      <use
-         transform="matrix(1.003504,0,0,1.0019016,19.813773,-0.08723622)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8700-3"
-         width="100%"
-         height="100%" />
-      <use
-         transform="matrix(1.003504,0,0,1.0019017,19.813777,-0.08723885)"
-         style="display:inline;stroke:#555753"
-         x="0"
-         y="0"
-         xlink:href="#g8323"
-         id="use8608"
-         width="100%"
-         height="100%" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(1.9947791,0,0,1.9939719,354.38167,165.09433)"
-       id="sjhgfjsgf" />
-    <g
-       id="checkbox-active-selectionmode"
-       transform="matrix(1.9947791,0,0,1.9939719,378.38167,213.04961)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880067,-0.04236769)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8700-1"
-         width="100%"
-         height="100%" />
-      <g
-         id="use8071"
-         style="display:inline"
-         transform="matrix(0.79809794,0,0,0.7889583,24.941149,7.9461609)">
-        <rect
-           rx="2.7080972"
-           y="31.050892"
-           x="17.820696"
-           height="13.505371"
-           width="13.341726"
-           id="rect8176"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10491);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.47996393;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           ry="2.7794352" />
-        <path
-           inkscape:connector-curvature="0"
-           id="path8178"
-           d="m 18.088488,34.607345 0,-0.986346 c 0,-1.315724 1.029805,-2.342598 2.311766,-2.342598 l 8.199058,0 c 1.281961,0 2.28095,1.026874 2.28095,2.342598 l 0,0.986346 c 0,-1.315702 -0.998989,-2.342598 -2.28095,-2.342598 l -8.199058,0 c -1.281961,0 -2.311766,1.026896 -2.311766,2.342598 z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-      </g>
-    </g>
-    <g
-       id="checkbox-backdrop-selectionmode"
-       transform="matrix(1.9947791,0,0,1.9939719,378.38167,256.96017)"
-       inkscape:label="#g10801">
-      <g
-         style="display:inline"
-         id="g8299"
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g8301"
-           style="display:inline">
-          <g
-             id="g8303" />
-        </g>
-      </g>
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880067,0.00248762)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8700-18"
-         width="100%"
-         height="100%" />
-      <rect
-         rx="2.1399629"
-         y="32.578323"
-         x="39.16967"
-         height="10.527368"
-         width="10.542755"
-         id="use8099"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.49543846;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         ry="2.1665556" />
-    </g>
-    <g
-       transform="matrix(1.9947791,0,0,1.9939719,378.38167,169.09433)"
-       style="display:inline"
-       id="checkbox-hover-selectionmode"
-       inkscape:label="#g8503">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880067,-0.06479522)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect8196"
-         id="use8700-5"
-         width="100%"
-         height="100%" />
-      <use
-         height="100%"
-         width="100%"
-         transform="matrix(1.0014962,0,0,1.0019016,19.88007,-0.06478938)"
-         id="use8347"
-         xlink:href="#g8323"
-         y="0"
-         x="0"
-         style="display:inline;stroke:#555753" />
-      <rect
-         ry="1.8288052"
-         rx="1.8288052"
-         y="32.726746"
-         x="39.367149"
-         height="10.08457"
-         width="10.124799"
-         id="rect8378"
-         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.68300003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-unchecked"
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-244.76083)"
-       inkscape:label="#g15805">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-0"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         id="g7025-0">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-05"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-7">
-            <rect
-               ry="15.453857"
-               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10489);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222389;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-81"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-24"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-49"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-7"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-checked"
-       transform="matrix(0.93340838,0,0,0.93289741,90.43693,-244.03704)"
-       inkscape:label="#g2928">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-1-8"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38699,-0.77583998)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-0"
-         id="use7034-4"
-         width="1"
-         height="1" />
-      <g
-         id="g7444-9">
-        <rect
-           rx="7.9057436"
-           y="268.29523"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-2-9"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           ry="8.0419083" />
-        <rect
-           rx="2.7766726"
-           y="267.2233"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-6"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           ry="2.7766726" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-checked"
-       transform="matrix(0.99650823,0,0,0.99810193,400.25541,-29.912922)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-4"
-         id="use5460-1"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect13523-5-8"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <g
-         id="g5708-7">
-        <path
-           id="path12830-4-17-08-9"
-           transform="matrix(1.003504,0,0,1.0019017,-0.25630433,39.988835)"
-           d="M 50.9375,-7.59375 44,-0.75 42.125,-2.625 40,-2.65625 l 0,1.71875 2.9375,2.90625 c 0.584627,0.5855605 1.540374,0.5855605 2.125,0 l 5.9375,-6 0,-3.5625 -0.0625,0 z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-           inkscape:connector-curvature="0" />
-        <path
-           sodipodi:nodetypes="cccccccccc"
-           inkscape:connector-curvature="0"
-           id="path12830-4-17-07"
-           d="m 50.868001,31.380423 -6.9811,6.843038 -1.871896,-1.872654 -2.138425,-0.01563 0.01122,1.699486 2.936988,2.938186 c 0.586676,0.586674 1.537597,0.586674 2.124273,0 l 7.996316,-8.077832 0.002,-1.570761 z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
-      </g>
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027804;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,330.00005)"
        style="display:inline"
-       id="selected-radio-mixed"
-       transform="matrix(0.93617253,0,0,0.93566004,408.83241,-28.033029)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089173,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-0"
-         id="use7034-3-8"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-9-9"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <g
-         id="use7164-1"
-         transform="matrix(1.0681792,0,0,1.0687642,118.74234,-2.1022682)">
-        <rect
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect4477-2"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect4479-7"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
-      </g>
+       id="slider-vert-scale-has-marks-above-backdrop-insensitive-dark"
+       inkscape:label="#g5529-3-5-9-3-7-2">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6-5-0-0-3-3"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,330.00005)"
        style="display:inline"
-       id="selected-checkbox-mixed"
-       transform="translate(439.99573,-29.999989)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-3.9091922e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-4"
-         id="use5460-0-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-0"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         id="g5684-9">
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="37.393383"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-2-2"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate" />
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="36.393433"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-8"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate" />
-      </g>
+       id="slider-vert-scale-has-marks-below-backdrop-insensitive-dark"
+       inkscape:label="#g5536-0-7-4-3-7-0">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3-4-7-7-2-5"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,300.00005)"
        style="display:inline"
-       id="selected-checkbox-unchecked"
-       inkscape:label="#g14325"
-       transform="translate(400,-29.999989)">
-      <g
-         style="display:inline"
-         id="g15812-6-6-1-4"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g5489-2-9-6-8-8-5"
-           style="display:inline">
-          <g
-             id="g5428-8-1-4-0-0-8" />
-        </g>
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect13523-3"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+       id="slider-horz-scale-has-marks-below-backdrop-dark"
+       inkscape:label="#g5515-6-0-2-0-2-6-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5-5-9-2-9-6-2"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="g5400-4">
-        <rect
-           ry="6"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10487);fill-opacity:1;stroke:#184472;stroke-width:2.09697676;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-9"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-3"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 Z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-8"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 Z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-02"
-           inkscape:connector-curvature="0" />
-      </g>
+         id="g4740-1-5-6-8-2-3-7" />
     </g>
     <g
        style="display:inline"
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,-9.9129244)"
-       id="selected-checkbox-checked-hover">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-59"
-         id="use5994-3"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14466-5"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5708-7"
-         id="use5736-6"
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
-         width="1000"
-         height="1052.3622" />
+       id="slider-horz-scale-has-marks-above-backdrop-dark"
+       transform="matrix(1,0,0,0.99944391,2.4701977e-6,299.99133)"
+       inkscape:label="#g5522-9-5-3-0-5-1-4">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-4-8-8-9-2-6"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.000278;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,300.00005)"
        style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,-9.9999894)"
-       id="selected-checkbox-mixed-hover">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-59"
-         id="use5994-2-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14482-6"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5684-9"
-         id="use5688-0"
-         width="1"
-         height="1" />
+       id="slider-vert-scale-has-marks-above-backdrop-dark"
+       inkscape:label="#g5529-3-5-9-3-7-0-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6-5-0-0-3-5-30"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,300.00005)"
        style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-hover"
-       transform="translate(400,-9.9999894)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0-59">
-        <rect
-           ry="6"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10485);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-1"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-78-7"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,43.374983 18,42.333895 18,40.999983 Z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-3-8"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 19.044053,42.374983 18,41.333895 18,39.999983 Z"
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
-        <path
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-4"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14506-2"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+       id="slider-vert-scale-has-marks-below-backdrop-dark"
+       inkscape:label="#g5536-0-7-4-3-7-2-0">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3-4-7-7-2-0-87"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,270.00005)"
        style="display:inline"
-       id="selected-checkbox-checked-active"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,10.087075)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-9"
-         id="use6314-5"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect14685-4"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+       id="slider-horz-scale-has-marks-below-insensitive-dark"
+       inkscape:label="#g5515-6-0-2-0-2-6-1-1">
       <path
          inkscape:connector-curvature="0"
-         id="path12830-4-17-08-5-9"
-         d="m 50.863858,32.380676 -6.94788,6.856765 -1.877805,-1.878566 -2.12818,-0.03131 0,1.722018 2.941895,2.911777 c 0.585502,0.586674 1.542679,0.586674 2.12818,0 l 5.946383,-6.01141 0,-3.569274 -0.06259,0 z"
-         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
-      <use
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.6393686e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-07"
-         id="use5756-7"
-         width="1"
-         height="1" />
+         id="path3497-8-5-5-9-2-9-6-5-3"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g4740-1-5-6-8-2-3-9-6" />
     </g>
     <g
        style="display:inline"
-       id="selected-checkbox-mixed-active"
-       transform="translate(439.99573,10.00001)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-9"
-         id="use6314-1-4"
-         transform="translate(0.004272,0)"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14701-5"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="use5812-4-5"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="37.393383"
-         rx="1.4843769"
-         ry="1.4843769" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-8"
-         id="use5812-8"
-         width="1"
-         height="1" />
+       id="slider-horz-scale-has-marks-above-insensitive-dark"
+       transform="matrix(1,0,0,0.99944391,2.4701977e-6,269.99133)"
+       inkscape:label="#g5522-9-5-3-0-5-1-0-1">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-4-8-8-9-2-7-2"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,270.00005)"
        style="display:inline"
-       id="selected-checkbox-unchecked-active"
-       inkscape:label="#g14325"
-       transform="translate(400,10.00001)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0-5-9">
-        <rect
-           ry="6"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10483);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 -2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-5-6"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14725-3"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+       id="slider-vert-scale-has-marks-above-insensitive-dark"
+       inkscape:label="#g5529-3-5-9-3-7-0-9-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6-5-0-0-3-5-3-6"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,270.00005)"
        style="display:inline"
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,30.087076)"
-       id="selected-checkbox-checked-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7-6"
-         id="use6445-2"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g14999-1"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g15001-0"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g15003-5" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g15009-7">
-        <g
-           id="g15013-9" />
-      </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect15021-7"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
+       id="slider-vert-scale-has-marks-below-insensitive-dark"
+       inkscape:label="#g5536-0-7-4-3-7-2-8-0">
       <path
-         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-7"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
+         id="path3497-0-3-4-7-7-2-0-8-5"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
+       transform="translate(2.4701977e-6,40.000045)"
        style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,30.000011)"
-       id="selected-checkbox-mixed-insensitive">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7-6"
-         id="use6465-8"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect15025-0"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-3"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
+       id="slider-horz-scale-has-marks-below-active"
+       inkscape:label="#g5515-6-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-5-8"
+         d="m 201.71751,-9.3362027 c -3.70998,-3.7184223 -9.72504,-3.7184173 -13.43502,0 -3.70999,3.718416 -3.70999,9.74715932 0,13.4655793 L 195,10.862168 201.71751,4.1293766 c 3.70999,-3.71841698 3.70999,-9.7471583 0,-13.4655793 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-6);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         id="g4740-1-7">
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-63-8" />
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-6-4" />
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720-2-1" />
+      </g>
     </g>
     <g
        style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-insensitive"
-       transform="translate(400,30.000011)">
+       id="slider-horz-scale-has-marks-above-active"
+       transform="matrix(1,0,0,0.99944391,2.4701977e-6,39.991327)"
+       inkscape:label="#g5522-9-5">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-9-7"
+         d="m 218.28249,4.0830772 c 3.70998,3.7225673 9.72504,3.7225638 13.43502,0 3.70999,-3.72256391 3.70999,-9.7580291 0,-13.4805964 L 225,-16.137818 l -6.71751,6.7402988 c -3.70999,3.7225638 -3.70999,9.75802901 0,13.4805964 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-5-5);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:1.00027812;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline;fill:#ededed;fill-opacity:1"
-         id="g5400-0-5-7-6">
-        <rect
-           ry="6"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-3-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
+         id="g4740-2-0-6"
+         style="display:inline"
+         transform="matrix(-1,0,0,-1,419.98546,-5.2628174)">
+        <path
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2-8-2"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8-02-1"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect15057-7"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+      <path
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,5.3621826 c 2.30863,-10e-7 4.61312,-0.859113 6.375,-2.625 1.88818,-1.8924693 2.75978,-4.4008102 2.625,-6.875 -0.12078,2.1382318 -0.99306,4.239352 -2.625,5.875 -1.76188,1.765887 -4.06637,2.624999 -6.375,2.625 -2.30863,1e-6 -4.61312,-0.859111 -6.375,-2.625 -1.63194,-1.6356505 -2.50422,-3.7367683 -2.625,-5.875 -0.13081,2.4697869 0.7403,4.9860195 2.625,6.875 1.76188,1.765889 4.06637,2.625001 6.375,2.625 z"
+         id="path4552-2-2-9-1"
+         inkscape:connector-curvature="0" />
     </g>
     <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-224.76083)"
-       id="selected-radio-unchecked-hover"
+       transform="translate(2.4701977e-6,40.000045)"
        style="display:inline"
-       inkscape:label="#g15392">
+       id="slider-vert-scale-has-marks-above-active"
+       inkscape:label="#g5529-3-1">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-6-6"
+         d="m 261.70963,4.0924971 c 3.7205,-3.70998424 3.7205,-9.7250478 0,-13.4350284 -3.72049,-3.7099807 -9.75259,-3.7099847 -13.47308,-2e-7 l -6.73655,6.7175144 6.73655,6.7175147 c 3.72049,3.7099806 9.75259,3.7099837 13.47308,-5e-7 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-3-7);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         style="display:inline"
-         id="g7025-8-2">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-0-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-1-1">
-            <rect
-               ry="15.453857"
-               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10481);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-8-5"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+         id="g5028-2-8">
         <path
            inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-2-0"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 -0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 -6.90978,-6.24559 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;enable-background:accumulate" />
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-2-3" />
         <path
            inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-4-9"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 -0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 -6.84302,-5.8782 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-93-8" />
         <path
            inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-9-0"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-54-5" />
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-0"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
     </g>
     <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-225.48385)"
-       id="selected-radio-checked-hover"
+       transform="translate(2.4701977e-6,40.000045)"
        style="display:inline"
-       inkscape:label="#g15404">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-79-9"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8-2"
-         id="use7392-0"
-         width="1"
-         height="1" />
+       id="slider-vert-scale-has-marks-below-active"
+       inkscape:label="#g5536-0-2">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-3-3"
+         d="m 278.29038,-9.3425315 c -3.7205,3.7099842 -3.7205,9.72504797 0,13.4350286 3.72049,3.7099807 9.75259,3.7099842 13.47308,0 l 6.73655,-6.7175144 -6.73655,-6.7175145 c -3.72049,-3.7099802 -9.75259,-3.7099842 -13.47308,3e-7 z"
+         style="color:#000000;fill:url(#linearGradient7117-1-2-4);fill-opacity:1;fill-rule:nonzero;stroke:#3e7aba;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         id="use7448-4"
-         transform="matrix(0.99411529,0,0,0.99411529,2.6893006,1.5417626)">
-        <rect
-           ry="8.0419083"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           id="rect4483-5"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="268.29523"
-           rx="7.9057436" />
-        <rect
-           ry="2.7766726"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           id="rect4485-6"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="267.2233"
-           rx="2.7766726" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       transform="matrix(0.93619363,0,0,0.93568113,408.82935,-8.0338405)"
-       id="selected-radio-mixed-hover"
-       inkscape:label="#g15422">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-8-6"
-         width="17.090481"
-         height="17.099842"
-         x="136.90158"
-         y="30.34798" />
-      <use
-         transform="matrix(0.99997746,0,0,0.99997746,-70.084327,-231.62484)"
+         id="g5028-9-66-6"
          style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8-2"
-         id="use7392-3-6"
-         width="1"
-         height="1" />
-      <g
-         id="use7508-3"
-         transform="matrix(1.0681551,0,0,1.0687402,118.74293,-2.1013573)">
-        <rect
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect7530-3"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect7532-7"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
+         transform="matrix(-1,0,0,1,540.0136,-0.02786437)">
+        <path
+           style="color:#000000;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0-0-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6-8-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.93591636;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6-1-9"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
+       transform="translate(2.4701977e-6,60.000004)"
        style="display:inline"
-       id="selected-radio-unchecked-active"
-       transform="matrix(0.93344283,0,0,0.93293183,303.78164,-204.04631)"
-       inkscape:label="#g15458">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-3-2"
-         width="17.140844"
-         height="17.150234"
-         x="206.99081"
-         y="261.97894" />
+       id="slider-horz-scale-has-marks-below-active-dark"
+       inkscape:label="#g5543-1-3">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-8-2-0-3"
+         d="m 201.71751,170.6638 c -3.70998,-3.71842 -9.72504,-3.71842 -13.43502,0 -3.70999,3.71841 -3.70999,9.74716 0,13.46558 l 6.71751,6.73279 6.71751,-6.73279 c 3.70999,-3.71842 3.70999,-9.74716 0,-13.46558 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-0);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="matrix(1.0029243,0,0,1.0029243,-0.60505212,-0.76587606)"
-         style="display:inline"
-         id="g7025-1-1">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-8"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-2">
-            <rect
-               ry="15.453857"
-               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10479);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-88-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+         transform="translate(0,180)"
+         id="g4740-3-3-5"
+         style="display:inline">
         <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-2-6"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 -0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 -6.90978,6.24559 z"
-           style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-1-8-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-3-2-6"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186.0625,-3.65625 c -0.0184,0.1578753 -0.0524,0.3102699 -0.0625,0.46875 9.6e-4,0.021167 -0.001,0.041339 0,0.0625 0.113,2.14970912 0.98494,4.2624574 2.625,5.90625 L 195,9.1875 201.375,2.78125 c 1.64006,-1.6437912 2.512,-3.75654062 2.625,-5.90625 -0.001,-0.020511 0.001,-0.041996 0,-0.0625 -0.01,-0.155035 -0.0445,-0.3142975 -0.0625,-0.46875 -0.20963,1.9842189 -1.04419,3.9157419 -2.5625,5.4375 L 195,8.1875 188.625,1.78125 c -1.51831,-1.5217594 -2.35287,-3.453281 -2.5625,-5.4375 z"
+           id="path4720-9-9-2"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       transform="matrix(0.93893104,0,0,0.93841705,322.64584,-205.48314)"
-       id="selected-radio-checked-active"
        style="display:inline"
-       inkscape:label="#g16048">
-      <use
-         transform="matrix(0.99415483,0,0,0.99415482,1.2096678,1.53112)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-1"
-         id="use5399-5"
-         width="1"
-         height="1" />
+       id="slider-horz-scale-has-marks-above-active-dark"
+       transform="matrix(1,0,0,0.99944373,2.4701977e-6,60.091144)"
+       inkscape:label="#g5550-2-6">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-3-5-7"
+         d="m 218.28249,184.08308 c 3.70998,3.72257 9.72504,3.72256 13.43502,0 3.70999,-3.72257 3.70999,-9.75803 0,-13.4806 L 225,163.86218 l -6.71751,6.7403 c -3.70999,3.72257 -3.70999,9.75803 0,13.4806 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-0-6);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:1.00027823;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
+         id="g4740-2-9-6-9"
          style="display:inline"
-         id="g16050-3"
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-        <g
-           id="g16052-3" />
+         transform="matrix(-1,0,0,-1,419.98546,174.73718)">
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 195,-11.625 c -2.30863,10e-7 -4.61312,0.859113 -6.375,2.625 -1.88818,1.8924693 -2.75978,4.4008102 -2.625,6.875 0.12078,-2.1382318 0.99306,-4.239352 2.625,-5.875 1.76188,-1.765887 4.06637,-2.624999 6.375,-2.625 2.30863,-10e-7 4.61312,0.859111 6.375,2.625 1.63194,1.6356505 2.50422,3.7367683 2.625,5.875 0.13081,-2.4697869 -0.7403,-4.9860195 -2.625,-6.875 -1.76188,-1.765889 -4.06637,-2.625001 -6.375,-2.625 z"
+           id="path4552-2-29-7-3"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 186,-3.125 c -0.14009,2.48003388 0.73219,5.009137 2.625,6.90625 L 195,10.1875 201.375,3.78125 c 1.89281,-1.8971113 2.76509,-4.42621625 2.625,-6.90625 -0.11682,2.14449281 -0.98843,4.26596 -2.625,5.90625 L 195,9.1875 188.625,2.78125 C 186.98843,1.1409586 186.11682,-0.9805068 186,-3.125 z"
+           id="path4552-6-8-0-8-9"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-4-9"
-         width="17.040653"
-         height="17.049988"
-         x="206.99059"
-         y="261.97876" />
-      <rect
-         ry="7.9946065"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-         id="use15101-5-8-9"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="268.25815"
-         rx="7.8592429" />
-      <rect
-         ry="2.7603407"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-         id="use15101-5-64"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="267.19257"
-         rx="2.7603407" />
+      <path
+         style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 224.98546,185.36218 c 2.30863,0 4.61312,-0.85911 6.375,-2.625 1.88818,-1.89247 2.75978,-4.40081 2.625,-6.875 -0.12078,2.13824 -0.99306,4.23936 -2.625,5.875 -1.76188,1.76589 -4.06637,2.625 -6.375,2.625 -2.30863,0 -4.61312,-0.85911 -6.375,-2.625 -1.63194,-1.63565 -2.50422,-3.73676 -2.625,-5.875 -0.13081,2.46979 0.7403,4.98602 2.625,6.875 1.76188,1.76589 4.06637,2.625 6.375,2.625 z"
+         id="path4552-2-2-8-9-0"
+         inkscape:connector-curvature="0" />
     </g>
     <g
+       transform="translate(2.4701977e-6,60.000004)"
        style="display:inline"
-       id="selected-radio-mixed-active"
-       transform="matrix(0.93617253,0,0,0.93566004,343.21685,-204.76083)"
-       inkscape:label="#g16079">
-      <use
-         transform="matrix(0.99708419,0,0,0.99708419,0.60329674,0.76365256)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-1"
-         id="use5399-3-5"
-         width="1"
-         height="1" />
+       id="slider-vert-scale-has-marks-above-active-dark"
+       inkscape:label="#g5557-6-9">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-7-4-4-6"
+         d="m 261.70963,184.0925 c 3.7205,-3.70999 3.7205,-9.72505 0,-13.43503 -3.72049,-3.70998 -9.75259,-3.70998 -13.47308,0 l -6.73655,6.71751 6.73655,6.71752 c 3.72049,3.70998 9.75259,3.70998 13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-0-9);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-         id="g16081-5"
+         transform="translate(0,180)"
+         id="g5028-6-2-0"
          style="display:inline">
-        <g
-           id="g16083-3" />
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-8-0-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-9-2-7"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-5-4-7"
+           inkscape:connector-curvature="0" />
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-32-3"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="rect7532-0-4-6"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="269.49341"
-         rx="1.5855805"
-         ry="1.586449" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="rect7532-0-3"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="268.42465"
-         rx="1.5855805"
-         ry="1.586449" />
     </g>
     <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-184.76083)"
-       id="selected-radio-unchecked-insensitive"
+       transform="translate(2.4701977e-6,60.000004)"
        style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-5-3"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
+       id="slider-vert-scale-has-marks-below-active-dark"
+       inkscape:label="#g5564-7-7">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3497-0-9-0-6"
+         d="m 278.29038,170.65747 c -3.7205,3.70998 -3.7205,9.72505 0,13.43503 3.72049,3.70998 9.75259,3.70998 13.47308,0 l 6.73655,-6.71752 -6.73655,-6.71751 c -3.72049,-3.70998 -9.75259,-3.70999 -13.47308,0 z"
+         style="color:#000000;fill:url(#linearGradient7101-3-0-4);fill-opacity:1;fill-rule:nonzero;stroke:#14375d;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
       <g
+         id="g5028-9-6-2-0"
          style="display:inline"
-         id="g7025-1-7-9">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-7-5"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-8-9">
-            <rect
-               ry="15.453857"
-               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-88-8-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
+         transform="matrix(-1,0,0,1,540.0136,179.97214)">
+        <path
+           style="color:#000000;fill:#353b3b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 242.6875,-3.125 -0.5,0.5 6.40625,6.375 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.8909,-1.8855547 2.75998,-4.40573231 2.625,-6.875 -0.11699,2.14022713 -0.98607,4.2407037 -2.625,5.875 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.90625,-5.875 z"
+           id="path4906-0-3-4-4"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 263.9375,-3.65625 c -0.20946,1.9781727 -1.042,3.89005249 -2.5625,5.40625 -3.53003,3.520064 -9.25122,3.5200613 -12.78125,0 l -5.40625,-5.375 -0.5,0.5 5.90625,5.875 c 3.53003,3.5200613 9.25122,3.520064 12.78125,0 1.63841,-1.6337777 2.50934,-3.73426266 2.625,-5.875 -10e-4,-0.020474 10e-4,-0.042033 0,-0.0625 -0.01,-0.1568009 -0.0447,-0.3125289 -0.0625,-0.46875 z"
+           id="path4906-3-6-3-4-3"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 254.96875,-11.625 c -2.31201,-10e-7 -4.60901,0.863994 -6.375,2.625 l -6.40625,6.375 0.5,0.5 5.90625,-5.875 c 1.76599,-1.761006 4.06299,-2.625001 6.375,-2.625 2.31201,10e-7 4.64224,0.865965 6.40625,2.625 1.63893,1.6342942 2.50801,3.734773 2.625,5.875 0.13498,-2.4692679 -0.7341,-4.9894477 -2.625,-6.875 -1.76401,-1.759035 -4.09424,-2.624999 -6.40625,-2.625 z"
+           id="path4906-6-6-4-9-3"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-185.48385)"
-       id="selected-radio-checked-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-9-5"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7-9"
-         id="use5683-5"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-0"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       style="display:inline"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,32.050762)"
-       id="selected-radio-mixed-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-98-9"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701507,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7-9"
-         id="use5683-3-0"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-4"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-checked-backdrop"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,50.087076)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722939)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-2"
-         id="use6551-6"
-         width="1"
-         height="1" />
+       inkscape:label="#g10801"
+       transform="matrix(1.990788,0,0,1.9939718,334.59299,125.13908)"
+       id="checkbox-checked-selectionmode">
       <g
-         style="display:inline"
-         id="g19927-5"
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
+         id="use8051"
+         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)">
+        <rect
+           ry="4.1330299"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.48329952;marker:none;enable-background:accumulate"
+           id="rect8196"
+           width="20.022388"
+           height="20.022388"
+           x="14.473747"
+           y="27.822527"
+           rx="4.1330299" />
         <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19929-1"
-           style="display:inline">
-          <g
-             id="g19931-2" />
+           id="g8323">
+          <rect
+             ry="2.1659286"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient10493);fill-opacity:1;stroke:#555753;stroke-width:0.49806672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+             id="rect8133"
+             width="10.610355"
+             height="10.524323"
+             x="19.186378"
+             y="32.48991"
+             rx="2.1536846" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path8135"
+             d="m 19.391061,40.242103 0,0.746384 c 0,0.995613 0.820325,1.772664 1.841514,1.772664 l 6.531232,0 c 1.021188,0 1.81696,-0.777051 1.81696,-1.772664 l 0,-0.746384 c 0,0.995611 -0.795772,1.772664 -1.81696,1.772664 l -6.531232,0 c -1.021189,0 -1.841514,-0.777053 -1.841514,-1.772664 z"
+             style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
+          <path
+             sodipodi:nodetypes="csssscssc"
+             inkscape:connector-curvature="0"
+             id="path8137"
+             d="m 19.391061,39.586662 0,0.785713 c 0,1.048072 0.820325,1.866067 1.841514,1.866067 l 6.531232,0 c 1.021188,0 1.81696,-0.817995 1.81696,-1.866067 l 0,-0.785713 c 0,1.048072 -0.795772,2.170876 -1.81696,2.170876 l -6.531232,0 c -1.021189,0 -1.841514,-1.122804 -1.841514,-2.170876 z"
+             style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50055969;marker:none;enable-background:accumulate" />
         </g>
       </g>
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect19941-8"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <path
-         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-3-2"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
+      <g
+         id="g8055">
+        <path
+           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2870bc;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
+           d="m 50.868001,31.261445 -6.9811,6.803452 -1.871896,-1.861821 -2.138425,-0.01553 0.01122,1.689654 2.936988,2.921189 c 0.586676,0.58328 1.537597,0.58328 2.124273,0 l 7.996316,-8.031103 0.002,-1.561674 z"
+           id="path8059"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc" />
+      </g>
     </g>
     <g
-       style="display:inline"
-       id="selected-checkbox-mixed-backdrop"
-       transform="translate(439.99573,50.000011)"
-       inkscape:label="#g14334">
+       id="checkbox-checked-hover-selectionmode"
+       transform="matrix(1.9947791,0,0,1.9939719,334.38167,169.09433)"
+       inkscape:label="#g10801">
       <use
-         transform="translate(0.004272,-2.9802322e-8)"
+         transform="matrix(1.0014962,0,0,1.0019016,19.880068,-0.06479538)"
          style="display:inline"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-2"
-         id="use6551-3-4"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect19945-7"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
+         xlink:href="#rect8196"
+         id="use8666"
+         width="100%"
+         height="100%" />
       <g
-         style="display:inline"
-         id="g19947-5"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19949-2"
-           style="display:inline">
-          <g
-             id="g19951-4" />
-        </g>
+         id="use8507">
+        <use
+           style="display:inline;stroke:#555753"
+           x="0"
+           y="0"
+           xlink:href="#g8323"
+           id="use8585"
+           transform="matrix(1.0014962,0,0,1.0019016,19.88007,-0.06478938)"
+           width="100%"
+           height="100%" />
+        <rect
+           style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.68300003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+           id="rect8587"
+           width="10.124799"
+           height="10.08457"
+           x="39.367149"
+           y="32.726746"
+           rx="1.8288052"
+           ry="1.8288052" />
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-6-0"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       style="display:inline"
-       transform="translate(400,50.000011)"
-       id="selected-checkbox-unchecked-backdrop"
-       inkscape:label="#g14325">
-      <rect
-         ry="2.8844237"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-2"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect19971-4"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="selected-radio-unchecked-backdrop"
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-164.76083)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19981-6"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-5"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="selected-radio-checked-backdrop"
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-165.48385)">
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19995-7"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
       <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
+         height="1052.3622"
+         width="1000"
+         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
+         id="use8067"
+         xlink:href="#g8055"
          y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-5"
-         id="use5805-3"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-3-92"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
+         x="0"
+         style="display:inline" />
     </g>
     <g
-       style="display:inline"
-       inkscape:label="#g15554"
-       id="selected-radio-mixed-backdrop"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,52.050762)">
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect20011-1"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+       inkscape:label="#g10801"
+       transform="matrix(1.9947791,0,0,1.9939719,334.38167,213.04961)"
+       id="checkbox-checked-active-selectionmode">
       <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
+         height="100%"
+         width="100%"
+         id="use8683"
+         xlink:href="#rect8196"
+         y="0"
+         x="0"
          style="display:inline"
+         transform="matrix(1.0014962,0,0,1.0019016,19.880068,-0.04236738)" />
+      <use
+         style="display:inline;stroke:#555753"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-5"
-         id="use5805-1-4"
-         width="1"
-         height="1" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-9-0"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
+         xlink:href="#use8071"
+         id="use8456"
+         width="100%"
+         height="100%" />
+      <use
+         height="1052.3622"
+         width="1000"
+         transform="matrix(0.99799923,0,0,0.99999995,0.10593796,0.02244762)"
+         id="use8067-8"
+         xlink:href="#g8055"
+         y="0"
+         x="0"
+         style="display:inline" />
     </g>
     <g
-       style="display:inline"
        inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,70.087071)"
-       id="selected-checkbox-checked-backdrop-insensitive">
+       transform="matrix(1.9947791,0,0,1.9939719,334.38167,256.96017)"
+       id="checkbox-checked-backdrop-selectionmode">
       <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722438)"
+         transform="matrix(1.0014962,0,0,1.0019016,19.880068,0.00248762)"
          style="display:inline"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         id="use6749-8"
-         width="1"
-         height="1" />
+         xlink:href="#rect8196"
+         id="use8700"
+         width="100%"
+         height="100%" />
+      <rect
+         ry="2.1665556"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.49543846;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         id="use8386"
+         width="10.542755"
+         height="10.527368"
+         x="39.169666"
+         y="32.578323"
+         rx="2.1399629" />
       <g
          transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g20167-8"
+         id="g8101"
          style="display:inline">
         <g
            style="display:inline"
-           id="g20169-9"
+           id="g8103"
            transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
           <g
-             id="g20171-3" />
+             id="g8105" />
         </g>
       </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g20175-1">
-        <g
-           id="g20177-1" />
-      </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20181-3"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
       <path
-         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380443 -6.981098,6.843039 -1.871898,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938186 c 0.586676,0.586675 1.537597,0.586675 2.124275,0 l 7.996314,-8.077832 0.002,-1.57076 z"
-         id="path12830-4-17-2-3-9-3"
+         sodipodi:nodetypes="cccccccccc"
          inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
+         id="path8109"
+         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2870bc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99699712;marker:none;enable-background:accumulate" />
     </g>
     <g
-       style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,70.000011)"
-       id="selected-checkbox-mixed-backdrop-insensitive">
+       id="checkbox-selectionmode"
+       transform="matrix(1.990788,0,0,1.9939718,378.59299,125.13908)"
+       inkscape:label="#g10801">
+      <g
+         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
+         id="g8239" />
       <use
-         transform="translate(0.004272,-2.9802322e-8)"
+         transform="matrix(1.003504,0,0,1.0019016,19.813773,-0.08723622)"
          style="display:inline"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         id="use6749-5-9"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect20185-0"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-      <g
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)"
-         id="g20187-2"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20189-1"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20191-6" />
-        </g>
-      </g>
-      <g
-         transform="translate(-40.874249,-1.0164925)"
-         id="g20195-4"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20197-6"
-           transform="translate(-400.08917,-231.63092)" />
-      </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-6-8-9"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
+         xlink:href="#rect8196"
+         id="use8700-3"
+         width="100%"
+         height="100%" />
+      <use
+         transform="matrix(1.003504,0,0,1.0019017,19.813777,-0.08723885)"
+         style="display:inline;stroke:#555753"
+         x="0"
+         y="0"
+         xlink:href="#g8323"
+         id="use8608"
+         width="100%"
+         height="100%" />
     </g>
     <g
-       style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-backdrop-insensitive"
-       transform="translate(400,70.000011)">
-      <rect
-         ry="2.8844237"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20211-5"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
+       inkscape:label="#g10801"
+       transform="matrix(1.9947791,0,0,1.9939719,354.38167,165.09433)"
+       id="sjhgfjsgf" />
     <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-144.76083)"
-       id="selected-radio-unchecked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20221-1"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-7-2"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
+       id="checkbox-active-selectionmode"
+       transform="matrix(1.9947791,0,0,1.9939719,378.38167,213.04961)"
+       inkscape:label="#g10801">
+      <use
+         transform="matrix(1.0014962,0,0,1.0019016,19.880067,-0.04236769)"
+         style="display:inline"
+         x="0"
+         y="0"
+         xlink:href="#rect8196"
+         id="use8700-1"
+         width="100%"
+         height="100%" />
+      <g
+         id="use8071"
+         style="display:inline"
+         transform="matrix(0.79809794,0,0,0.7889583,24.941149,7.9461609)">
+        <rect
+           rx="2.7080972"
+           y="31.050892"
+           x="17.820696"
+           height="13.505371"
+           width="13.341726"
+           id="rect8176"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10491);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.47996393;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+           ry="2.7794352" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path8178"
+           d="m 18.088488,34.607345 0,-0.986346 c 0,-1.315724 1.029805,-2.342598 2.311766,-2.342598 l 8.199058,0 c 1.281961,0 2.28095,1.026874 2.28095,2.342598 l 0,0.986346 c 0,-1.315702 -0.998989,-2.342598 -2.28095,-2.342598 l -8.199058,0 c -1.281961,0 -2.311766,1.026896 -2.311766,2.342598 z"
+           style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate" />
+      </g>
     </g>
     <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-145.48385)"
-       id="selected-radio-checked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
+       id="checkbox-backdrop-selectionmode"
+       transform="matrix(1.9947791,0,0,1.9939719,378.38167,256.96017)"
+       inkscape:label="#g10801">
       <g
          style="display:inline"
-         id="g20225-2"
-         transform="translate(250,1.6004853e-6)">
+         id="g8299"
+         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
         <g
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-           id="g20227-7"
+           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
+           id="g8301"
            style="display:inline">
           <g
-             id="g20229-2" />
+             id="g8303" />
         </g>
       </g>
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20235-3"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
       <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
+         transform="matrix(1.0014962,0,0,1.0019016,19.880067,0.00248762)"
          style="display:inline"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7-2"
-         id="use5938-1"
-         width="1"
-         height="1" />
+         xlink:href="#rect8196"
+         id="use8700-18"
+         width="100%"
+         height="100%" />
       <rect
-         ry="2.7603328"
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-3-9-4"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
+         rx="2.1399629"
+         y="32.578323"
+         x="39.16967"
+         height="10.527368"
+         width="10.542755"
+         id="use8099"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:0.49543846;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         ry="2.1665556" />
     </g>
     <g
+       transform="matrix(1.9947791,0,0,1.9939719,378.38167,169.09433)"
        style="display:inline"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,72.050761)"
-       id="selected-radio-mixed-backdrop-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20251-9"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
+       id="checkbox-hover-selectionmode"
+       inkscape:label="#g8503">
       <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
+         transform="matrix(1.0014962,0,0,1.0019016,19.880067,-0.06479522)"
          style="display:inline"
          x="0"
          y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7-2"
-         id="use5938-3-2"
-         width="1"
-         height="1" />
+         xlink:href="#rect8196"
+         id="use8700-5"
+         width="100%"
+         height="100%" />
+      <use
+         height="100%"
+         width="100%"
+         transform="matrix(1.0014962,0,0,1.0019016,19.88007,-0.06478938)"
+         id="use8347"
+         xlink:href="#g8323"
+         y="0"
+         x="0"
+         style="display:inline;stroke:#555753" />
       <rect
-         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-9-6-6"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
+         ry="1.8288052"
+         rx="1.8288052"
+         y="32.726746"
+         x="39.367149"
+         height="10.08457"
+         width="10.124799"
+         id="rect8378"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.68300003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
     </g>
     <g
        id="text-select-end"
index c4221862930554c3859763ff862062a0939f61cc..898516d46a1d454e86bfe136172043a750282662 100644 (file)
@@ -2489,302 +2489,6 @@ switch {
 /*************************
  * Check and Radio items *
  *************************/
-treeview.check {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check button.flat, treeview.check notebook > header > tabs > arrow, treeview.check button.sidebar-button, treeview.check headerbar button.titlebutton, headerbar treeview.check button.titlebutton,
-  treeview.check .titlebar button.titlebutton,
-  .titlebar treeview.check button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover-dark.png"), url("assets/checkbox-unchecked-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:hover button.flat, treeview.check:hover notebook > header > tabs > arrow, treeview.check:hover button.sidebar-button, treeview.check:hover headerbar button.titlebutton, headerbar treeview.check:hover button.titlebutton,
-  treeview.check:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active-dark.png"), url("assets/checkbox-unchecked-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:active button.flat, treeview.check:active notebook > header > tabs > arrow, treeview.check:active button.sidebar-button, treeview.check:active headerbar button.titlebutton, headerbar treeview.check:active button.titlebutton,
-  treeview.check:active .titlebar button.titlebutton,
-  .titlebar treeview.check:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:disabled button.flat, treeview.check:disabled notebook > header > tabs > arrow, treeview.check:disabled button.sidebar-button, treeview.check:disabled headerbar button.titlebutton, headerbar treeview.check:disabled button.titlebutton,
-  treeview.check:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-dark.png"), url("assets/checkbox-unchecked-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop button.flat, treeview.check:backdrop notebook > header > tabs > arrow, treeview.check:backdrop button.sidebar-button, treeview.check:backdrop headerbar button.titlebutton, headerbar treeview.check:backdrop button.titlebutton,
-  treeview.check:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive-dark.png"), url("assets/checkbox-unchecked-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:disabled button.flat, treeview.check:backdrop:disabled notebook > header > tabs > arrow, treeview.check:backdrop:disabled button.sidebar-button, treeview.check:backdrop:disabled headerbar button.titlebutton, headerbar treeview.check:backdrop:disabled button.titlebutton,
-  treeview.check:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate button.flat, treeview.check:indeterminate notebook > header > tabs > arrow, treeview.check:indeterminate button.sidebar-button, treeview.check:indeterminate headerbar button.titlebutton, headerbar treeview.check:indeterminate button.titlebutton,
-  treeview.check:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover-dark.png"), url("assets/checkbox-mixed-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:hover button.flat, treeview.check:indeterminate:hover notebook > header > tabs > arrow, treeview.check:indeterminate:hover button.sidebar-button, treeview.check:indeterminate:hover headerbar button.titlebutton, headerbar treeview.check:indeterminate:hover button.titlebutton,
-  treeview.check:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active-dark.png"), url("assets/checkbox-mixed-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:selected button.flat, treeview.check:indeterminate:selected notebook > header > tabs > arrow, treeview.check:indeterminate:selected button.sidebar-button, treeview.check:indeterminate:selected headerbar button.titlebutton, headerbar treeview.check:indeterminate:selected button.titlebutton,
-  treeview.check:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-dark.png"), url("assets/checkbox-mixed-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:backdrop button.flat, treeview.check:indeterminate:backdrop notebook > header > tabs > arrow, treeview.check:indeterminate:backdrop button.sidebar-button, treeview.check:indeterminate:backdrop headerbar button.titlebutton, headerbar treeview.check:indeterminate:backdrop button.titlebutton,
-  treeview.check:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:disabled button.flat, treeview.check:indeterminate:disabled notebook > header > tabs > arrow, treeview.check:indeterminate:disabled button.sidebar-button, treeview.check:indeterminate:disabled headerbar button.titlebutton, headerbar treeview.check:indeterminate:disabled button.titlebutton,
-  treeview.check:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive-dark.png"), url("assets/checkbox-mixed-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:disabled:backdrop button.flat, treeview.check:indeterminate:disabled:backdrop notebook > header > tabs > arrow, treeview.check:indeterminate:disabled:backdrop button.sidebar-button, treeview.check:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar treeview.check:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.check:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked button.flat, treeview.check:checked notebook > header > tabs > arrow, treeview.check:checked button.sidebar-button, treeview.check:checked headerbar button.titlebutton, headerbar treeview.check:checked button.titlebutton,
-  treeview.check:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:disabled button.flat, treeview.check:checked:disabled notebook > header > tabs > arrow, treeview.check:checked:disabled button.sidebar-button, treeview.check:checked:disabled headerbar button.titlebutton, headerbar treeview.check:checked:disabled button.titlebutton,
-  treeview.check:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-dark.png"), url("assets/checkbox-checked-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:hover button.flat, treeview.check:checked:hover notebook > header > tabs > arrow, treeview.check:checked:hover button.sidebar-button, treeview.check:checked:hover headerbar button.titlebutton, headerbar treeview.check:checked:hover button.titlebutton,
-  treeview.check:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-dark.png"), url("assets/checkbox-checked-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:active button.flat, treeview.check:checked:active notebook > header > tabs > arrow, treeview.check:checked:active button.sidebar-button, treeview.check:checked:active headerbar button.titlebutton, headerbar treeview.check:checked:active button.titlebutton,
-  treeview.check:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-dark.png"), url("assets/checkbox-checked-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked button.flat, treeview.check:backdrop:checked notebook > header > tabs > arrow, treeview.check:backdrop:checked button.sidebar-button, treeview.check:backdrop:checked headerbar button.titlebutton, headerbar treeview.check:backdrop:checked button.titlebutton,
-  treeview.check:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive-dark.png"), url("assets/checkbox-checked-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked:disabled button.flat, treeview.check:backdrop:checked:disabled notebook > header > tabs > arrow, treeview.check:backdrop:checked:disabled button.sidebar-button, treeview.check:backdrop:checked:disabled headerbar button.titlebutton, headerbar treeview.check:backdrop:checked:disabled button.titlebutton,
-  treeview.check:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio button.flat, treeview.radio notebook > header > tabs > arrow, treeview.radio button.sidebar-button, treeview.radio headerbar button.titlebutton, headerbar treeview.radio button.titlebutton,
-  treeview.radio .titlebar button.titlebutton,
-  .titlebar treeview.radio button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover-dark.png"), url("assets/radio-unchecked-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:hover button.flat, treeview.radio:hover notebook > header > tabs > arrow, treeview.radio:hover button.sidebar-button, treeview.radio:hover headerbar button.titlebutton, headerbar treeview.radio:hover button.titlebutton,
-  treeview.radio:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active-dark.png"), url("assets/radio-unchecked-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:active button.flat, treeview.radio:active notebook > header > tabs > arrow, treeview.radio:active button.sidebar-button, treeview.radio:active headerbar button.titlebutton, headerbar treeview.radio:active button.titlebutton,
-  treeview.radio:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:disabled button.flat, treeview.radio:disabled notebook > header > tabs > arrow, treeview.radio:disabled button.sidebar-button, treeview.radio:disabled headerbar button.titlebutton, headerbar treeview.radio:disabled button.titlebutton,
-  treeview.radio:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-dark.png"), url("assets/radio-unchecked-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop button.flat, treeview.radio:backdrop notebook > header > tabs > arrow, treeview.radio:backdrop button.sidebar-button, treeview.radio:backdrop headerbar button.titlebutton, headerbar treeview.radio:backdrop button.titlebutton,
-  treeview.radio:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive-dark.png"), url("assets/radio-unchecked-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:disabled button.flat, treeview.radio:backdrop:disabled notebook > header > tabs > arrow, treeview.radio:backdrop:disabled button.sidebar-button, treeview.radio:backdrop:disabled headerbar button.titlebutton, headerbar treeview.radio:backdrop:disabled button.titlebutton,
-  treeview.radio:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate button.flat, treeview.radio:indeterminate notebook > header > tabs > arrow, treeview.radio:indeterminate button.sidebar-button, treeview.radio:indeterminate headerbar button.titlebutton, headerbar treeview.radio:indeterminate button.titlebutton,
-  treeview.radio:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover-dark.png"), url("assets/radio-mixed-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:hover button.flat, treeview.radio:indeterminate:hover notebook > header > tabs > arrow, treeview.radio:indeterminate:hover button.sidebar-button, treeview.radio:indeterminate:hover headerbar button.titlebutton, headerbar treeview.radio:indeterminate:hover button.titlebutton,
-  treeview.radio:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active-dark.png"), url("assets/radio-mixed-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:selected button.flat, treeview.radio:indeterminate:selected notebook > header > tabs > arrow, treeview.radio:indeterminate:selected button.sidebar-button, treeview.radio:indeterminate:selected headerbar button.titlebutton, headerbar treeview.radio:indeterminate:selected button.titlebutton,
-  treeview.radio:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-dark.png"), url("assets/radio-mixed-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:backdrop button.flat, treeview.radio:indeterminate:backdrop notebook > header > tabs > arrow, treeview.radio:indeterminate:backdrop button.sidebar-button, treeview.radio:indeterminate:backdrop headerbar button.titlebutton, headerbar treeview.radio:indeterminate:backdrop button.titlebutton,
-  treeview.radio:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:disabled button.flat, treeview.radio:indeterminate:disabled notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled button.sidebar-button, treeview.radio:indeterminate:disabled headerbar button.titlebutton, headerbar treeview.radio:indeterminate:disabled button.titlebutton,
-  treeview.radio:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive-dark.png"), url("assets/radio-mixed-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:disabled:backdrop button.flat, treeview.radio:indeterminate:disabled:backdrop notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled:backdrop button.sidebar-button, treeview.radio:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar treeview.radio:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.radio:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked button.flat, treeview.radio:checked notebook > header > tabs > arrow, treeview.radio:checked button.sidebar-button, treeview.radio:checked headerbar button.titlebutton, headerbar treeview.radio:checked button.titlebutton,
-  treeview.radio:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:disabled button.flat, treeview.radio:checked:disabled notebook > header > tabs > arrow, treeview.radio:checked:disabled button.sidebar-button, treeview.radio:checked:disabled headerbar button.titlebutton, headerbar treeview.radio:checked:disabled button.titlebutton,
-  treeview.radio:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover-dark.png"), url("assets/radio-checked-hover-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:hover button.flat, treeview.radio:checked:hover notebook > header > tabs > arrow, treeview.radio:checked:hover button.sidebar-button, treeview.radio:checked:hover headerbar button.titlebutton, headerbar treeview.radio:checked:hover button.titlebutton,
-  treeview.radio:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active-dark.png"), url("assets/radio-checked-active-dark@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:active button.flat, treeview.radio:checked:active notebook > header > tabs > arrow, treeview.radio:checked:active button.sidebar-button, treeview.radio:checked:active headerbar button.titlebutton, headerbar treeview.radio:checked:active button.titlebutton,
-  treeview.radio:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-dark.png"), url("assets/radio-checked-backdrop-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked button.flat, treeview.radio:backdrop:checked notebook > header > tabs > arrow, treeview.radio:backdrop:checked button.sidebar-button, treeview.radio:backdrop:checked headerbar button.titlebutton, headerbar treeview.radio:backdrop:checked button.titlebutton,
-  treeview.radio:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive-dark.png"), url("assets/radio-checked-backdrop-insensitive-dark@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked:disabled button.flat, treeview.radio:backdrop:checked:disabled notebook > header > tabs > arrow, treeview.radio:backdrop:checked:disabled button.sidebar-button, treeview.radio:backdrop:checked:disabled headerbar button.titlebutton, headerbar treeview.radio:backdrop:checked:disabled button.titlebutton,
-  treeview.radio:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view.check, iconview.check, .view.radio, iconview.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none; }
-  .view.check:selected, iconview.check:selected, .view.check:hover, iconview.check:hover, .view.radio:selected, iconview.radio:selected, .view.radio:hover, iconview.radio:hover,
-  row .check:selected,
-  row .check:hover, row .radio:selected, row .radio:hover {
-    -gtk-icon-shadow: none; }
-
 .view.content-view.check:not(list), iconview.content-view.check:not(list) {
   -gtk-icon-shadow: none;
   -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png"));
@@ -2912,17 +2616,23 @@ radio {
     border-color: currentColor;
     animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view check:selected:disabled, treeview.view check:selected,
 check {
   border-radius: 3px; }
+  treeview.view check:checked:selected,
   check:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), -gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
+  treeview.view check:indeterminate:selected,
   check:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view radio:selected:disabled, treeview.view radio:selected,
 radio {
   border-radius: 100%; }
+  treeview.view radio:checked:selected,
   radio:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), -gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
+  treeview.view radio:indeterminate:selected,
   radio:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
@@ -2956,6 +2666,43 @@ menu menuitem check:indeterminate:checked:active,
 menu menuitem radio:indeterminate:checked {
   animation: none; }
 
+treeview.view check:dir(rtl):selected:focus, treeview.view check:dir(rtl):selected:hover, treeview.view check:dir(rtl):selected, treeview.view check:dir(rtl):focus, treeview.view check:dir(rtl):hover, treeview.view check:dir(rtl), treeview.view check:dir(ltr):selected:focus, treeview.view check:dir(ltr):selected:hover, treeview.view check:dir(ltr):selected, treeview.view check:dir(ltr):focus, treeview.view check:dir(ltr):hover, treeview.view check:dir(ltr),
+treeview.view radio:dir(rtl):selected:focus,
+treeview.view radio:dir(rtl):selected:hover,
+treeview.view radio:dir(rtl):selected,
+treeview.view radio:dir(rtl):focus,
+treeview.view radio:dir(rtl):hover,
+treeview.view radio:dir(rtl),
+treeview.view radio:dir(ltr):selected:focus,
+treeview.view radio:dir(ltr):selected:hover,
+treeview.view radio:dir(ltr):selected,
+treeview.view radio:dir(ltr):focus,
+treeview.view radio:dir(ltr):hover,
+treeview.view radio:dir(ltr) {
+  color: #eeeeec; }
+treeview.view check:dir(rtl):selected:backdrop:hover, treeview.view check:dir(rtl):selected:backdrop, treeview.view check:dir(rtl):backdrop:hover, treeview.view check:dir(rtl):backdrop, treeview.view check:dir(ltr):selected:backdrop:hover, treeview.view check:dir(ltr):selected:backdrop, treeview.view check:dir(ltr):backdrop:hover, treeview.view check:dir(ltr):backdrop,
+treeview.view radio:dir(rtl):selected:backdrop:hover,
+treeview.view radio:dir(rtl):selected:backdrop,
+treeview.view radio:dir(rtl):backdrop:hover,
+treeview.view radio:dir(rtl):backdrop,
+treeview.view radio:dir(ltr):selected:backdrop:hover,
+treeview.view radio:dir(ltr):selected:backdrop,
+treeview.view radio:dir(ltr):backdrop:hover,
+treeview.view radio:dir(ltr):backdrop {
+  color: #949796; }
+treeview.view check:dir(rtl):selected:backdrop:disabled, treeview.view check:dir(rtl):backdrop:disabled, treeview.view check:dir(ltr):selected:backdrop:disabled, treeview.view check:dir(ltr):backdrop:disabled,
+treeview.view radio:dir(rtl):selected:backdrop:disabled,
+treeview.view radio:dir(rtl):backdrop:disabled,
+treeview.view radio:dir(ltr):selected:backdrop:disabled,
+treeview.view radio:dir(ltr):backdrop:disabled {
+  color: #5d6767; }
+treeview.view check:dir(rtl):selected:disabled, treeview.view check:dir(rtl):disabled, treeview.view check:dir(ltr):selected:disabled, treeview.view check:dir(ltr):disabled,
+treeview.view radio:dir(rtl):selected:disabled,
+treeview.view radio:dir(rtl):disabled,
+treeview.view radio:dir(ltr):selected:disabled,
+treeview.view radio:dir(ltr):disabled {
+  color: #949796; }
+
 /************
  * GtkScale *
  ************/
index fbeade60df1c51b6945c017c5153947006d57db1..25039b23f9cd9cfeb7bf12f312c8fe33d8339c70 100644 (file)
@@ -2511,410 +2511,6 @@ switch {
 /*************************
  * Check and Radio items *
  *************************/
-treeview.check {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check button.flat, treeview.check notebook > header > tabs > arrow, treeview.check button.sidebar-button, treeview.check headerbar button.titlebutton, headerbar treeview.check button.titlebutton,
-  treeview.check .titlebar button.titlebutton,
-  .titlebar treeview.check button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:selected, iconview treeview.check:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked.png"), url("assets/selected-checkbox-unchecked@2.png")); }
-
-treeview.check:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover.png"), url("assets/checkbox-unchecked-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:hover button.flat, treeview.check:hover notebook > header > tabs > arrow, treeview.check:hover button.sidebar-button, treeview.check:hover headerbar button.titlebutton, headerbar treeview.check:hover button.titlebutton,
-  treeview.check:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:hover:selected, iconview treeview.check:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-hover.png"), url("assets/selected-checkbox-unchecked-hover@2.png")); }
-
-treeview.check:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), url("assets/checkbox-unchecked-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:active button.flat, treeview.check:active notebook > header > tabs > arrow, treeview.check:active button.sidebar-button, treeview.check:active headerbar button.titlebutton, headerbar treeview.check:active button.titlebutton,
-  treeview.check:active .titlebar button.titlebutton,
-  .titlebar treeview.check:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:active:selected, iconview treeview.check:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-active.png"), url("assets/selected-checkbox-unchecked-active@2.png")); }
-
-treeview.check:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:disabled button.flat, treeview.check:disabled notebook > header > tabs > arrow, treeview.check:disabled button.sidebar-button, treeview.check:disabled headerbar button.titlebutton, headerbar treeview.check:disabled button.titlebutton,
-  treeview.check:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:disabled:selected, iconview treeview.check:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-insensitive.png"), url("assets/selected-checkbox-unchecked-insensitive@2.png")); }
-
-treeview.check:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop.png"), url("assets/checkbox-unchecked-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop button.flat, treeview.check:backdrop notebook > header > tabs > arrow, treeview.check:backdrop button.sidebar-button, treeview.check:backdrop headerbar button.titlebutton, headerbar treeview.check:backdrop button.titlebutton,
-  treeview.check:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:selected, iconview treeview.check:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-backdrop.png"), url("assets/selected-checkbox-unchecked-backdrop@2.png")); }
-
-treeview.check:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive.png"), url("assets/checkbox-unchecked-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:disabled button.flat, treeview.check:backdrop:disabled notebook > header > tabs > arrow, treeview.check:backdrop:disabled button.sidebar-button, treeview.check:backdrop:disabled headerbar button.titlebutton, headerbar treeview.check:backdrop:disabled button.titlebutton,
-  treeview.check:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:disabled:selected, iconview treeview.check:backdrop:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-backdrop-insensitive.png"), url("assets/selected-checkbox-unchecked-backdrop-insensitive@2.png")); }
-
-treeview.check:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate button.flat, treeview.check:indeterminate notebook > header > tabs > arrow, treeview.check:indeterminate button.sidebar-button, treeview.check:indeterminate headerbar button.titlebutton, headerbar treeview.check:indeterminate button.titlebutton,
-  treeview.check:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:selected, iconview treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed.png"), url("assets/selected-checkbox-mixed@2.png")); }
-
-treeview.check:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover.png"), url("assets/checkbox-mixed-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:hover button.flat, treeview.check:indeterminate:hover notebook > header > tabs > arrow, treeview.check:indeterminate:hover button.sidebar-button, treeview.check:indeterminate:hover headerbar button.titlebutton, headerbar treeview.check:indeterminate:hover button.titlebutton,
-  treeview.check:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:hover:selected, iconview treeview.check:indeterminate:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-hover.png"), url("assets/selected-checkbox-mixed-hover@2.png")); }
-
-treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:selected button.flat, treeview.check:indeterminate:selected notebook > header > tabs > arrow, treeview.check:indeterminate:selected button.sidebar-button, treeview.check:indeterminate:selected headerbar button.titlebutton, headerbar treeview.check:indeterminate:selected button.titlebutton,
-  treeview.check:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:selected:selected, iconview treeview.check:indeterminate:selected:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-active.png"), url("assets/selected-checkbox-mixed-active@2.png")); }
-
-treeview.check:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop.png"), url("assets/checkbox-mixed-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:backdrop button.flat, treeview.check:indeterminate:backdrop notebook > header > tabs > arrow, treeview.check:indeterminate:backdrop button.sidebar-button, treeview.check:indeterminate:backdrop headerbar button.titlebutton, headerbar treeview.check:indeterminate:backdrop button.titlebutton,
-  treeview.check:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:backdrop:selected, iconview treeview.check:indeterminate:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-backdrop.png"), url("assets/selected-checkbox-mixed-backdrop@2.png")); }
-
-treeview.check:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:disabled button.flat, treeview.check:indeterminate:disabled notebook > header > tabs > arrow, treeview.check:indeterminate:disabled button.sidebar-button, treeview.check:indeterminate:disabled headerbar button.titlebutton, headerbar treeview.check:indeterminate:disabled button.titlebutton,
-  treeview.check:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:disabled:selected, iconview treeview.check:indeterminate:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-insensitive.png"), url("assets/selected-checkbox-mixed-insensitive@2.png")); }
-
-treeview.check:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive.png"), url("assets/checkbox-mixed-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:disabled:backdrop button.flat, treeview.check:indeterminate:disabled:backdrop notebook > header > tabs > arrow, treeview.check:indeterminate:disabled:backdrop button.sidebar-button, treeview.check:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar treeview.check:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.check:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:disabled:backdrop:selected, iconview treeview.check:indeterminate:disabled:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-backdrop-insensitive.png"), url("assets/selected-checkbox-mixed-backdrop-insensitive@2.png")); }
-
-treeview.check:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked button.flat, treeview.check:checked notebook > header > tabs > arrow, treeview.check:checked button.sidebar-button, treeview.check:checked headerbar button.titlebutton, headerbar treeview.check:checked button.titlebutton,
-  treeview.check:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:selected, iconview treeview.check:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked.png"), url("assets/selected-checkbox-checked@2.png")); }
-
-treeview.check:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:disabled button.flat, treeview.check:checked:disabled notebook > header > tabs > arrow, treeview.check:checked:disabled button.sidebar-button, treeview.check:checked:disabled headerbar button.titlebutton, headerbar treeview.check:checked:disabled button.titlebutton,
-  treeview.check:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:disabled:selected, iconview treeview.check:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-insensitive.png"), url("assets/selected-checkbox-checked-insensitive@2.png")); }
-
-treeview.check:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover.png"), url("assets/checkbox-checked-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:hover button.flat, treeview.check:checked:hover notebook > header > tabs > arrow, treeview.check:checked:hover button.sidebar-button, treeview.check:checked:hover headerbar button.titlebutton, headerbar treeview.check:checked:hover button.titlebutton,
-  treeview.check:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:hover:selected, iconview treeview.check:checked:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-hover.png"), url("assets/selected-checkbox-checked-hover@2.png")); }
-
-treeview.check:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), url("assets/checkbox-checked-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:active button.flat, treeview.check:checked:active notebook > header > tabs > arrow, treeview.check:checked:active button.sidebar-button, treeview.check:checked:active headerbar button.titlebutton, headerbar treeview.check:checked:active button.titlebutton,
-  treeview.check:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:active:selected, iconview treeview.check:checked:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-active.png"), url("assets/selected-checkbox-checked-active@2.png")); }
-
-treeview.check:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop.png"), url("assets/checkbox-checked-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked button.flat, treeview.check:backdrop:checked notebook > header > tabs > arrow, treeview.check:backdrop:checked button.sidebar-button, treeview.check:backdrop:checked headerbar button.titlebutton, headerbar treeview.check:backdrop:checked button.titlebutton,
-  treeview.check:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:checked:selected, iconview treeview.check:backdrop:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-backdrop.png"), url("assets/selected-checkbox-checked-backdrop@2.png")); }
-
-treeview.check:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive.png"), url("assets/checkbox-checked-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked:disabled button.flat, treeview.check:backdrop:checked:disabled notebook > header > tabs > arrow, treeview.check:backdrop:checked:disabled button.sidebar-button, treeview.check:backdrop:checked:disabled headerbar button.titlebutton, headerbar treeview.check:backdrop:checked:disabled button.titlebutton,
-  treeview.check:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:checked:disabled:selected, iconview treeview.check:backdrop:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-backdrop-insensitive.png"), url("assets/selected-checkbox-checked-backdrop-insensitive@2.png")); }
-
-treeview.radio {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio button.flat, treeview.radio notebook > header > tabs > arrow, treeview.radio button.sidebar-button, treeview.radio headerbar button.titlebutton, headerbar treeview.radio button.titlebutton,
-  treeview.radio .titlebar button.titlebutton,
-  .titlebar treeview.radio button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:selected, iconview treeview.radio:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked.png"), url("assets/selected-radio-unchecked@2.png")); }
-
-treeview.radio:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover.png"), url("assets/radio-unchecked-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:hover button.flat, treeview.radio:hover notebook > header > tabs > arrow, treeview.radio:hover button.sidebar-button, treeview.radio:hover headerbar button.titlebutton, headerbar treeview.radio:hover button.titlebutton,
-  treeview.radio:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:hover:selected, iconview treeview.radio:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-hover.png"), url("assets/selected-radio-unchecked-hover@2.png")); }
-
-treeview.radio:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:active button.flat, treeview.radio:active notebook > header > tabs > arrow, treeview.radio:active button.sidebar-button, treeview.radio:active headerbar button.titlebutton, headerbar treeview.radio:active button.titlebutton,
-  treeview.radio:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:active:selected, iconview treeview.radio:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-active.png"), url("assets/selected-radio-unchecked-active@2.png")); }
-
-treeview.radio:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:disabled button.flat, treeview.radio:disabled notebook > header > tabs > arrow, treeview.radio:disabled button.sidebar-button, treeview.radio:disabled headerbar button.titlebutton, headerbar treeview.radio:disabled button.titlebutton,
-  treeview.radio:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:disabled:selected, iconview treeview.radio:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-insensitive.png"), url("assets/selected-radio-unchecked-insensitive@2.png")); }
-
-treeview.radio:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop.png"), url("assets/radio-unchecked-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop button.flat, treeview.radio:backdrop notebook > header > tabs > arrow, treeview.radio:backdrop button.sidebar-button, treeview.radio:backdrop headerbar button.titlebutton, headerbar treeview.radio:backdrop button.titlebutton,
-  treeview.radio:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:selected, iconview treeview.radio:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-backdrop.png"), url("assets/selected-radio-unchecked-backdrop@2.png")); }
-
-treeview.radio:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive.png"), url("assets/radio-unchecked-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:disabled button.flat, treeview.radio:backdrop:disabled notebook > header > tabs > arrow, treeview.radio:backdrop:disabled button.sidebar-button, treeview.radio:backdrop:disabled headerbar button.titlebutton, headerbar treeview.radio:backdrop:disabled button.titlebutton,
-  treeview.radio:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:disabled:selected, iconview treeview.radio:backdrop:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-backdrop-insensitive.png"), url("assets/selected-radio-unchecked-backdrop-insensitive@2.png")); }
-
-treeview.radio:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate button.flat, treeview.radio:indeterminate notebook > header > tabs > arrow, treeview.radio:indeterminate button.sidebar-button, treeview.radio:indeterminate headerbar button.titlebutton, headerbar treeview.radio:indeterminate button.titlebutton,
-  treeview.radio:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:selected, iconview treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed.png"), url("assets/selected-radio-mixed@2.png")); }
-
-treeview.radio:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover.png"), url("assets/radio-mixed-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:hover button.flat, treeview.radio:indeterminate:hover notebook > header > tabs > arrow, treeview.radio:indeterminate:hover button.sidebar-button, treeview.radio:indeterminate:hover headerbar button.titlebutton, headerbar treeview.radio:indeterminate:hover button.titlebutton,
-  treeview.radio:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:hover:selected, iconview treeview.radio:indeterminate:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-hover.png"), url("assets/selected-radio-mixed-hover@2.png")); }
-
-treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:selected button.flat, treeview.radio:indeterminate:selected notebook > header > tabs > arrow, treeview.radio:indeterminate:selected button.sidebar-button, treeview.radio:indeterminate:selected headerbar button.titlebutton, headerbar treeview.radio:indeterminate:selected button.titlebutton,
-  treeview.radio:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:selected:selected, iconview treeview.radio:indeterminate:selected:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-active.png"), url("assets/selected-radio-mixed-active@2.png")); }
-
-treeview.radio:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop.png"), url("assets/radio-mixed-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:backdrop button.flat, treeview.radio:indeterminate:backdrop notebook > header > tabs > arrow, treeview.radio:indeterminate:backdrop button.sidebar-button, treeview.radio:indeterminate:backdrop headerbar button.titlebutton, headerbar treeview.radio:indeterminate:backdrop button.titlebutton,
-  treeview.radio:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:backdrop:selected, iconview treeview.radio:indeterminate:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-backdrop.png"), url("assets/selected-radio-mixed-backdrop@2.png")); }
-
-treeview.radio:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:disabled button.flat, treeview.radio:indeterminate:disabled notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled button.sidebar-button, treeview.radio:indeterminate:disabled headerbar button.titlebutton, headerbar treeview.radio:indeterminate:disabled button.titlebutton,
-  treeview.radio:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:disabled:selected, iconview treeview.radio:indeterminate:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-insensitive.png"), url("assets/selected-radio-mixed-insensitive@2.png")); }
-
-treeview.radio:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive.png"), url("assets/radio-mixed-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:disabled:backdrop button.flat, treeview.radio:indeterminate:disabled:backdrop notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled:backdrop button.sidebar-button, treeview.radio:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar treeview.radio:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.radio:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:disabled:backdrop:selected, iconview treeview.radio:indeterminate:disabled:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-backdrop-insensitive.png"), url("assets/selected-radio-mixed-backdrop-insensitive@2.png")); }
-
-treeview.radio:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked button.flat, treeview.radio:checked notebook > header > tabs > arrow, treeview.radio:checked button.sidebar-button, treeview.radio:checked headerbar button.titlebutton, headerbar treeview.radio:checked button.titlebutton,
-  treeview.radio:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:selected, iconview treeview.radio:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked.png"), url("assets/selected-radio-checked@2.png")); }
-
-treeview.radio:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:disabled button.flat, treeview.radio:checked:disabled notebook > header > tabs > arrow, treeview.radio:checked:disabled button.sidebar-button, treeview.radio:checked:disabled headerbar button.titlebutton, headerbar treeview.radio:checked:disabled button.titlebutton,
-  treeview.radio:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:disabled:selected, iconview treeview.radio:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-insensitive.png"), url("assets/selected-radio-checked-insensitive@2.png")); }
-
-treeview.radio:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover.png"), url("assets/radio-checked-hover@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:hover button.flat, treeview.radio:checked:hover notebook > header > tabs > arrow, treeview.radio:checked:hover button.sidebar-button, treeview.radio:checked:hover headerbar button.titlebutton, headerbar treeview.radio:checked:hover button.titlebutton,
-  treeview.radio:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:hover:selected, iconview treeview.radio:checked:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-hover.png"), url("assets/selected-radio-checked-hover@2.png")); }
-
-treeview.radio:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active@2.png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:active button.flat, treeview.radio:checked:active notebook > header > tabs > arrow, treeview.radio:checked:active button.sidebar-button, treeview.radio:checked:active headerbar button.titlebutton, headerbar treeview.radio:checked:active button.titlebutton,
-  treeview.radio:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:active:selected, iconview treeview.radio:checked:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-active.png"), url("assets/selected-radio-checked-active@2.png")); }
-
-treeview.radio:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop.png"), url("assets/radio-checked-backdrop@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked button.flat, treeview.radio:backdrop:checked notebook > header > tabs > arrow, treeview.radio:backdrop:checked button.sidebar-button, treeview.radio:backdrop:checked headerbar button.titlebutton, headerbar treeview.radio:backdrop:checked button.titlebutton,
-  treeview.radio:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:checked:selected, iconview treeview.radio:backdrop:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-backdrop.png"), url("assets/selected-radio-checked-backdrop@2.png")); }
-
-treeview.radio:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive.png"), url("assets/radio-checked-backdrop-insensitive@2.png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked:disabled button.flat, treeview.radio:backdrop:checked:disabled notebook > header > tabs > arrow, treeview.radio:backdrop:checked:disabled button.sidebar-button, treeview.radio:backdrop:checked:disabled headerbar button.titlebutton, headerbar treeview.radio:backdrop:checked:disabled button.titlebutton,
-  treeview.radio:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:checked:disabled:selected, iconview treeview.radio:backdrop:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-backdrop-insensitive.png"), url("assets/selected-radio-checked-backdrop-insensitive@2.png")); }
-
-.view.check, iconview.check, .view.radio, iconview.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none; }
-  .view.check:selected, iconview.check:selected, .view.check:hover, iconview.check:hover, .view.radio:selected, iconview.radio:selected, .view.radio:hover, iconview.radio:hover,
-  row .check:selected,
-  row .check:hover, row .radio:selected, row .radio:hover {
-    -gtk-icon-shadow: none; }
-
 .view.content-view.check:not(list), iconview.content-view.check:not(list) {
   -gtk-icon-shadow: none;
   -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png"));
@@ -3045,17 +2641,23 @@ radio {
     border-color: currentColor;
     animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view check:selected:disabled, treeview.view check:selected,
 check {
   border-radius: 3px; }
+  treeview.view check:checked:selected,
   check:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), -gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
+  treeview.view check:indeterminate:selected,
   check:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view radio:selected:disabled, treeview.view radio:selected,
 radio {
   border-radius: 100%; }
+  treeview.view radio:checked:selected,
   radio:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), -gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
+  treeview.view radio:indeterminate:selected,
   radio:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
@@ -3089,6 +2691,49 @@ menu menuitem check:indeterminate:checked:active,
 menu menuitem radio:indeterminate:checked {
   animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view check:selected:disabled, treeview.view check:selected {
+  border-color: #184472; }
+
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view radio:selected:disabled, treeview.view radio:selected {
+  border-color: #184472; }
+
+treeview.view check:dir(rtl):selected:focus, treeview.view check:dir(rtl):selected:hover, treeview.view check:dir(rtl):selected, treeview.view check:dir(rtl):focus, treeview.view check:dir(rtl):hover, treeview.view check:dir(rtl), treeview.view check:dir(ltr):selected:focus, treeview.view check:dir(ltr):selected:hover, treeview.view check:dir(ltr):selected, treeview.view check:dir(ltr):focus, treeview.view check:dir(ltr):hover, treeview.view check:dir(ltr),
+treeview.view radio:dir(rtl):selected:focus,
+treeview.view radio:dir(rtl):selected:hover,
+treeview.view radio:dir(rtl):selected,
+treeview.view radio:dir(rtl):focus,
+treeview.view radio:dir(rtl):hover,
+treeview.view radio:dir(rtl),
+treeview.view radio:dir(ltr):selected:focus,
+treeview.view radio:dir(ltr):selected:hover,
+treeview.view radio:dir(ltr):selected,
+treeview.view radio:dir(ltr):focus,
+treeview.view radio:dir(ltr):hover,
+treeview.view radio:dir(ltr) {
+  color: #2e3436; }
+treeview.view check:dir(rtl):selected:backdrop:hover, treeview.view check:dir(rtl):selected:backdrop, treeview.view check:dir(rtl):backdrop:hover, treeview.view check:dir(rtl):backdrop, treeview.view check:dir(ltr):selected:backdrop:hover, treeview.view check:dir(ltr):selected:backdrop, treeview.view check:dir(ltr):backdrop:hover, treeview.view check:dir(ltr):backdrop,
+treeview.view radio:dir(rtl):selected:backdrop:hover,
+treeview.view radio:dir(rtl):selected:backdrop,
+treeview.view radio:dir(rtl):backdrop:hover,
+treeview.view radio:dir(rtl):backdrop,
+treeview.view radio:dir(ltr):selected:backdrop:hover,
+treeview.view radio:dir(ltr):selected:backdrop,
+treeview.view radio:dir(ltr):backdrop:hover,
+treeview.view radio:dir(ltr):backdrop {
+  color: #8b8e8f; }
+treeview.view check:dir(rtl):selected:backdrop:disabled, treeview.view check:dir(rtl):backdrop:disabled, treeview.view check:dir(ltr):selected:backdrop:disabled, treeview.view check:dir(ltr):backdrop:disabled,
+treeview.view radio:dir(rtl):selected:backdrop:disabled,
+treeview.view radio:dir(rtl):backdrop:disabled,
+treeview.view radio:dir(ltr):selected:backdrop:disabled,
+treeview.view radio:dir(ltr):backdrop:disabled {
+  color: #c3c3c0; }
+treeview.view check:dir(rtl):selected:disabled, treeview.view check:dir(rtl):disabled, treeview.view check:dir(ltr):selected:disabled, treeview.view check:dir(ltr):disabled,
+treeview.view radio:dir(rtl):selected:disabled,
+treeview.view radio:dir(rtl):disabled,
+treeview.view radio:dir(ltr):selected:disabled,
+treeview.view radio:dir(ltr):disabled {
+  color: #8b8e8f; }
+
 /************
  * GtkScale *
  ************/